Categories | Question details Back To List | ||
grid doesn't load all the rows in the grid I've got a grid that loads rows in chunks dynamically. the first set of rows works great, but as you scroll down the subsequent row sets only show some rows and not all. sometimes its like no rows load at all. any ideas? gridAll = new dhtmlXGridObject("gridAll"); gridAll.setImagePath("dhtmlx/imgs/"); gridAll.setEditable(true); gridAll.setSkin("mt"); gridAll.enableEditEvents(true, false, false); gridAll.init(); gridAll.enableSmartRendering(true,500); ... gridAll.loadXML(URL,function(){ ... }); Answer posted by Support on Nov 19, 2008 02:48 Is it possible that row content contains some elements which change default row's height ( images with height greater than height of the row for example ) ? |