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
550
UltraGridCell in WDG
posted

I am upgrading from  ultrawebgrid  to webdatagrid , and  i need ti know what is the equivalent of  UltraGridCell  in WDG


UltraGridCell cell = new UltraGridCell();
cell.Value ="ABD";

row.Cells.Add(cell);

Parents
No Data
Reply
  • 17590
    Verified Answer
    Offline posted

    Hello Sreevani,

    Thank you for posting in our community.

    WebDataGrid control has a different architecture than its predecessor UltraWebGrid. It is a DataBound control, which means that it displays the records returned from the data source.

    Basically, cells and rows could not be added directly to the WebDataGrid. Alternatively, you could add them straight to the data source and rebind the grid. Some further reference about WebDataGrid`s data binding, supported data sources etc. could be found at:

    http://help.infragistics.com/doc/ASPNET/2014.1/CLR4.0/?page=WebDataGrid_Supported_Data_Sources.html

    Please feel free to contact me if you have any additional questions regarding this matter.

Children