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
90
Copy UltraWebGrid's rows with cells
posted

Hi.

In Infragistics for ASP.NET 8.3  I could save UltraWebGrid rows collection in Page.Session as of:

Session("currentPageRows") = uwgItemList.Rows

And in the ajax request I used it as of:

Dim rows As RowsCollection = Session("currentPageRows")
Dim row As UltraGridRow = rows.FromKey(keyID)

row.Cells.Count >0

and it work fine.

 

Now I am migrating on  Net.Advanced 11.1 and have a problem: UltraWebGrid rows collection's cells are lost.

After

Dim rows As RowsCollection = Session("currentPageRows")
Dim row As UltraGridRow = rows.FromKey(keyID)

 row.Cells.Count =0  

What should I do to keep the cells and their values?

 

 

 

 

Parents Reply Children
No Data