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
804
put my own values in the ultraWebGrid
posted

I want to put my own values in a specific cell in the ultraWebGrid. My code return "no data can be display" :

uwg = new UltraWebGrid();

UltraGridRow ugRow = new UltraGridRow();
uwg.Rows.Add(ugRow);

UltraGridCell ugCell = new UltraGridCell();
uwg.Rows[Convert.ToInt32(rowTest["DTC01"])].Cells.Add(ugCell);
                                    uwg.Rows[Convert.ToInt32(rowTest["DTC01"])].Cells[Convert.ToInt32(rowTest["DTC02"])].Value = "allo";

wb.ContentPane.Controls.Add(uwg);

Normally, I want to see "allo" in the cell, but i had no result.

And, I want to see "allo" like a hyperLinkButton

 

Thanks for the future help

Gabriel Deschênes