Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
120
Row on Another Page
posted

 Anyone know how to access a row on a different ultragrid page? eg - i want to select row 2 on page 2, but i'm currently on page 1. Is this possible?

Parents
No Data
Reply
  • 28464
    posted

    I just want to add that the grid both on the server side and on the client-side (CSOM) keeps record only of the rows / columns that are currently visible and available (current page) - this is done for optimization purposes - the grid will be very slow, if not impossible to work with, if it stores all data and information about potentially thousands of rows, while displaying only one Page of 20 rows.

    So, if you to obtain a reference to a row that is not on the current page, then I am afraid this is not possible using the grid API (you will need to either explicitly page to the page needed or query your datasource directly). 

Children
No Data