IDEMPIERE-769 Problem with pinion button in the toolbar with sort tabs.

This commit is contained in:
Heng Sin Low 2013-03-19 17:38:36 +08:00
parent 554603f296
commit 17c3f08137
1 changed files with 6 additions and 1 deletions

View File

@ -1219,9 +1219,14 @@ public abstract class AbstractADWindowContent extends AbstractUIPart implements
//Deepak-Enabling customize button IDEMPIERE-364
if(!(adTabbox.getSelectedTabpanel() instanceof ADSortTab))
{
toolbar.enableCustomize(((ADTabpanel)adTabbox.getSelectedTabpanel()).isGridView());
else
}
else
{
toolbar.enableCustomize(false);
toolbar.enableProcessButton(false);
}
}