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
475
Equivalent UltraWebGrid Functions
posted

Can anyone tell me the equivalent functions for UltraWebGrid for the following DataGrid functions

DataGrid.Items.Item(i).Cells(1).Controls.Add(imgTest)

DataGrid.Items().Count()

Parents
No Data
Reply
  • 384
    posted

    Not sure on adding controls, I have been using the EditorControls functionality in my winforms application to add dropdown or textboxes to the grid.

     Regarding the count, how about:

    UltraWebGrid.Rows.Count ?

Children