IDEMPIERE-144 Performance: Reduce use of modal dialog. Fixed regression for new button.

This commit is contained in:
Heng Sin Low 2012-06-22 16:30:21 +08:00
parent 9329465ae7
commit 061840a127
1 changed files with 5 additions and 2 deletions

View File

@ -709,7 +709,7 @@ public abstract class AbstractADWindowPanel extends AbstractUIPart implements To
if (!find.isCancel()) if (!find.isCancel())
{ {
m_findCreateNew = find.isCreateNew(); m_findCreateNew = find.isCreateNew();
MQuery result = m_findCreateNew ? query : find.getQuery(); MQuery result = find.getQuery();
callback.onCallback(result); callback.onCallback(result);
} }
else else
@ -1561,7 +1561,10 @@ public abstract class AbstractADWindowPanel extends AbstractUIPart implements To
curTabpanel.query(m_onlyCurrentRows, m_onlyCurrentDays, MRole.getDefault().getMaxQueryRecords()); // autoSize curTabpanel.query(m_onlyCurrentRows, m_onlyCurrentDays, MRole.getDefault().getMaxQueryRecords()); // autoSize
} }
curTab.dataRefresh(false); // Elaine 2008/07/25 if (find.isCreateNew())
onNew();
else
curTab.dataRefresh(false); // Elaine 2008/07/25
} }
else else
{ {