Hi,
this is My Problem, I want filter my ListGrid in client only, so i define my listgrid class
in this case i can see the filter in the head of listGrid, but the filter is not active, how i can activate this to filter in the client only, i don't want to request my server (via RPC), just do this in the front client.
Thanx a Lot
this is My Problem, I want filter my ListGrid in client only, so i define my listgrid class
Code:
public class MyListGrid extends ListGrid{
public MyListGrid(){
...
this.setShowFilterEditor(true);
...
}
...
}
Thanx a Lot
Comment