Categories | Question details Back To List | ||
How to resize grid with smart rendering I have dhtmlxGrid Professional 1.3. I want to be able to resize the grid dynamically. I can do this, but I'm having trouble getting dhtmlxGrid to react to the size of the containing DIV changing. I've used 'setSizes() to make it do part of the job, but since I'm using smart rendering, it doesn't always populate the newly available rows with data when the grid is grown. Any ideas? Answer posted on Jun 05, 2007 16:01 grid.setSizes() - will correctly adjust grid to its container size, but it really will not trigger additional rows loading || showing in case of smartRendering. To force such operation please add next call after it. grid._askRealRows(); this command will force rendering additional rows if necessary ( we will try to make such behaviour automatic in next version of grid ) Answer posted by Embre (Support) on Dec 05, 2014 16:22 If you haven't found the needed information there and still looking for a solution, you will find the additional help checking simple javascript date picker and tabbed dhtml. |