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
1140
Reg: cannot extract AJAX enabled Ultrawebgrid cell values from server side code
posted

Dear All,

 

We are using Ultra webgrid in our web application with the following properties Browser="Xml" and LoadOnDemand="Xml" and AllowPaging="True" MinimumPagesForDisplay="10" PageSize="10". We have load 20,000 records in to grid it will displays 10 records per page and it can navigate and can show the records using navigation. While we are trying to get the values of grid in server side we cannot access the whole values we can access only the currently displaying records only, if we are trying to access 11 the row in the grid it throws the error.

 

Please help me how to resolve the problem.

Thanks in advance,

Sphinx

 

Parents
No Data
Reply
  • 14049
    Offline posted

    Hello,

    In theory you can put all of your records into the view state by setting EnableInternalRowsManagement off the DisplayLayout to true. But with 20000 records I'd advise you against that as the view state will become huge and page load time will be affected tremendously. Instead it might be better to create another mechanism for accessing random rows from the data source, not related to the grid.

Children