Dhtmlx Grid not showing last 2 records in Chrome/FireFox

Hi,

Have a display problem of Grid data in Chrome/Firefox (it works in IE), the grid is not showing the last 2 records.

Here are codes and hope you can give us some idea on how to resolve this issue.

    var grid = new dhtmlXGridObject("grid");
    
    grid.setImagePath("js/dhtmlxGrid/codebase/imgs/");
    grid.setHeader("No,Pathway Title,Datasource,Links");
    grid.setInitWidthsP("5,60,20,15");
    grid.setColTypes("cntr,ro,ro,ro");
    grid.enablePaging(true,20,10,"paging");
    grid.setPagingSkin("toolbar", "dhx_blue");
    grid.setSkin("dhx_blue");
    grid.enableMultiline(true);
    grid.enableAutoHeight(true);
    grid.enableAutoWidth(true);
    
    grid.init();
    
    grid.loadXML("search.do?ResultTab=Pathway");

    var dp = new dataProcessor("");
    dp.init(grid);

Thanks,
Joseph

Try to update your dhtmlxGrid to the last version.
If issue stil occurs for you - please provide an example of your XML.