Categories | Question details Back To List | ||
Smart Rendering issue in v1.6 pagination ("toolbar") I'm using pagination (1.6 version, toolbar) for my pages which contains grid. I have set 10 rows per page, (say I have overall 10 records). Now when I add a new row, page 1 displays all the 11 records, second page shows the 11th row. similarly when I keep adding new rows, page 1 displays all the available rows. i.e. the 11th record onwards is displayed in 1st page as well as in page2,page3,....so on. Except page 1 all pages displays only 10 records each. The issue is Page 1 is displaying all the available rows instead of the 10 rows which I have set in pagination. [NOTE: This issue is present only when I enable Smart Rendering [ myGrid.enableSmartRendering(true); ], If I dont use Smart Rendering, Pagination is working perfectly fine while adding new rows. Please suggest any possible solution for this. Answer posted by Support on Oct 08, 2008 06:48 You must not use smartRendering and paging in same time. Paging provides the same performance benefits as smart rendering, so it just has no sense to enable both modes in the same time. |