Filtering not working with dynamic loading

Hi,

i’m loading data in grid using dynamic method (in java connector)

but due to this filtering & export grid as csv is not working.

can anyone help me.
or provide me sample code for the same.

SERVER SIDE SAMPLE CODE:

GridConnector c = new GridConnector(connection);
c.event.attach(new RenderBehavior());
c.servlet(req, res);
c.dynamic_loading(15);
c.render_sql(“select * from table_ImageAuditl”,“id”,“barcode,receivedTimeStamp,caTissueUpdated”);

Unfortunately in case of using the dynamic loading you need to implement the server-side filtering.
You may use the connector’s filters (there are ready-working examples in the java connector package)

Also, it is not available to serialize the grid’s data to csv as it is not on the client side in case of dynamic loading.