working great except one things : the data in grid is appear after more than 10 seconds when page load and i think it rendering all 50000 when page load.
any solution? as far as i understand all advatage of SR is that only several rows are rendering and datat from DB is getting when scrolling the grid.
Do you have any code which iterate over all rows in grid?
If you are using 50000 rows in grid its better to use dynamic Smart rendering mode. docs.dhtmlx.com/doku.php?id=dhtm … ep_by_step
so - can i combine the dynamic loading with JSON in order to solve the problem?
in the article u sent me i saw solution for XML generated by server side.
thanks in advance.
’ output data in XML format
Response.write("")
Do while not rs.EOF
Response.write("")
Response.write("")
etc etc