Categories | Question details Back To List | ||
By default pagination is not coming Hi, In my grid table in html table by default the pagination is not appearing.But after clicking sorting it's appearing..can u tell what would be the reason fopr that.. Answer posted by Support on May 18, 2009 05:12 If you are loading grid from html table you need to call grid.changePage(0) to activate paging after data loading. Can be done as <table name="mygrid" oninit="mygrid.changePage(0)" ... other table properties ... > |