Smart Rendering using CSV source

Is there anyway to enable smart rendering when using data from csv ? i can’t find any tutorial about this.

Or smart rendering is only for XML ?

Thank you

Smart rendering works with any loading types. To enable smart rendering mode you just need to add mygrid.enableSmartRendering(true); to the grid inititalization.

Yes i have enable  mygrid.enableSmartRendering(true), but seem always loading a full csv instead by part, below are my code, i set to launch 10 row at first loading, something not correct ?

 
 
 
 
 
 
 

i set to launch 10 row at first loading, something not correct
When you are loading grid from static file all data loaded at once. Please check this tutorial about smart rendering dhtmlx.com/dhxdocs/doku.php?id=d … ep_by_step

It will load full dateset ( because you are using static file for loading ) , but it will render only visible rows.
In you case smart rendering works in static mode, it loads full file, but renders only visible rows, so rendering time must be much lesser than in case without smart rendering.