paing with html table

hi everybody,

> can U help me? when i try use paging in grid when initialize grid with html table, it paging ok, but when loading it show all record in table, when one event happen such as: i select filter, sort…then paging normal. So how can fix it.

> thanks a lot

You need to call
    grid.changePage(1);
after initial rendering , so the grid will switch to paging mode.

    var grid=dhtmlXGridFromTable(“some_table”)
    grid.enablePaging(…
    grid.changePage(1);