IDEMPIERE-3003:Info Window - Reset button should reset grid content

This commit is contained in:
hieplq 2016-01-20 22:07:11 +07:00
parent 3ea9967118
commit 39ba0fba8f
2 changed files with 8 additions and 1 deletions

View File

@ -1646,6 +1646,8 @@ public class InfoWindow extends InfoPanel implements ValueChangeListener, EventL
// filter dynamic value
dynamicDisplay(null);
onQueryCallback (null);
}
@Override

View File

@ -1984,7 +1984,12 @@ public abstract class InfoPanel extends Window implements EventListener<Event>,
}
}
m_sqlUserOrder="";
executeQuery();
// event == null mean direct call from reset button
if (event == null)
m_count = 0;
else
executeQuery();
renderItems();
// IDEMPIERE-1334 after refresh, restore prev selected item start
// just evaluate display logic of process button when requery by use click requery button