ServerSide Paging/Scrolling: How to get body/rows/cells created on server side.

ServerSide Paging/Scrolling: How to get body/rows/cells created on server side.

ShaktiSinghShaktiSingh Posts: 1Questions: 1Answers: 0

I have a complex server side model driven design that supports Client Side datatables.
I need to support serverSide paging/ scrolling for large volumes.

At present, the Table (header, rows, cells with custom parameters, classes, etc) html is created on the server side and is than initailized with the .Datatable() and options assigned on the client side.

Is it possible to create the rows html on server side and just update the table body, rather than getting JSON data and then implement CreatedRow or CreatedCell?

Answers

  • colincolin Posts: 15,240Questions: 1Answers: 2,599

    Hi @ShaktiSingh ,

    If you have client-side processing (paging, scrolling, etc.), yes, that would be possible. But not, unfortunately, if you want server-side processing as you stated.

    Cheers,

    Colin

This discussion has been closed.