Hi, is it possible to add data to a grid “On-Demand” instead of just loading it all at once? Thanks guys
Yep, both smart rendering
docs.dhtmlx.com/doku.php?id=dhtm … _rendering
and paging
docs.dhtmlx.com/doku.php?id=dhtmlxgrid:paging
can work in dynamic mode, loading only necessary data from server side ( connector’s package has related samples )
Not exactly what I had in my mind my friend. What I actually want is to add data that is obatined during runtime (stored in a variable not in a XML). Ex. User clicks “save” on a window, I want to add the window title to a grid as soon as he is done clicking.
–>>> onclick event{send text to grid};
thanks
You can add any necessary number of rows to the grid with addRow() method. Please find more information here docs.dhtmlx.com/doku.php?id=dhtm … ect_addrow