GXT - 如何将网格过滤器参数添加到请求 URL(获取参数)?
final PagingLoader<PagingLoadResult<ModelData>> loader = new BasePagingLoader<PagingLoadResult<ModelData>>(proxy, reader) {
@Override
protected Object newLoadConfig() {
BasePagingLoadConfig config = new BaseFilterPagingLoadConfig();
return config;
}
};
=
请求网址:http://localhost/index.php?action=getLines&limit=10&sortField=null&offset=0&sortDir=NONE&filters=[com.extjs.gxt.ui.client.data.BaseStringFilterConfig@3abbafc7]
过滤器=[com.extjs.gxt.ui.client.data.BaseStringFilterConfig@3abbafc7] ???
如何将此行转换为请求 url?
谢谢!