Gxt how to save the grid FilterConfig into the cookie
Gxt how to save the grid FilterConfig into the cookie
Sven,
I am trying to capture the FilterConfig info to save into grid state, but the following is not working,
Could you please suggest the correct Event type and Listener to capture grid filter config info.
booleanFilter.addListener(Events.Select, new Listener<FilterEvent>() {
public void handleEvent(FilterEvent be) {
MessageBox.alert("activeFilter onChange..."+be.getFilter().getValue(), null,null);
}
});