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
55
UltraWebGrid RowsCollection with LoadOnDemand="Xml"
posted

Is there a way to get a collection of displayed / loaded rows when the UltraWebGrid is set to LoadOnDemand="Xml"?

I need a way to loop through a collection of displayed / loaded rows to determine if a checkbox in the first column of every row is selected or not. The property ultraWebGrid.Rows works fine if the grid is not set to LoadOnDemand="Xml". But otherwise it only displays the first 50 rows (50 is set as the default value of the RowsRange property).

Doe's anybody know to get around this problem?

Parents
No Data
Reply
  • 45
    posted

    The reason you are able to see only 50 rows is because of the RowsRange property of the grid. By Default it is set to 50.

    When using LoadOnDemand.Xml in conjunction with Paging, the RowsRange should be set to the same value as the PageSize.

     

Children
No Data