IDEMPIERE-3003:Info Window - Reset button should reset grid content
This commit is contained in:
parent
3ea9967118
commit
39ba0fba8f
|
@ -1646,6 +1646,8 @@ public class InfoWindow extends InfoPanel implements ValueChangeListener, EventL
|
|||
|
||||
// filter dynamic value
|
||||
dynamicDisplay(null);
|
||||
|
||||
onQueryCallback (null);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue