richard.hallier
3 Sep 2008, 7:23 AM
GXT 1.1a3
In the combobox class
protected PagingLoadConfig getParams(String query) {
BasePagingLoadConfig config = new BasePagingLoadConfig();
config.setLimit(10);
config.setOffset(0);
config.getParams().put("query", query);
return config;
}
config.setLimit(10) is hardcoded, could be better to use the pageSize property
Cheers
R.
In the combobox class
protected PagingLoadConfig getParams(String query) {
BasePagingLoadConfig config = new BasePagingLoadConfig();
config.setLimit(10);
config.setOffset(0);
config.getParams().put("query", query);
return config;
}
config.setLimit(10) is hardcoded, could be better to use the pageSize property
Cheers
R.