Combining dynamic loading and filtering

Hello all,

I first implemented some filtering and sorting options while loading the entire data at once.

Later I implemented the dynamic loading, where I use dynamic xml.

Obviously the filtering no longer works.

Does anyone have an idea how I can combine this?

Client side filtering require all rows to be loaded. If you are using dynamic loading you should implement server side filtering

docs.dhtmlx.com/doku.php?id=dhtm … parameters

To simplify server side operation related DHTML component you can try to use dhtmlxConnector extension
dhtmlx.com/docs/products/dhtmlxC … x.shtml?mn

Okay will that makes sense.

So I build a js function which clears the grid and loads it with a new xml (with parameters)

But how do I then attach JS functions to the menu?

And second, how can I fill the dropdown filter boxes (in the subheader) with possible options?

But how do I then attach JS functions to the menu
You can use “onClick” dhtmlxMenu event.

And second, how can I fill the dropdown filter boxes (in the subheader) with possible options?
The simples way is to use dhtmlxConnector. Combo boxes in header will be filled automatically.