Hello all,
I plan to migrate my current application which has some web tabular forms to the webgrid. However, my current application has dynamically generated hyper links for some columns items. So what do I need to do if I want the same functionality in the webgrid? Thank you very much.
If you want to have hyperlinks as the content of the cell, you can set the column type.
UltraWebGrid1.Columns[0].Type = ColumnType.HyperLink;
But if there's something else you're intended to do, please explain a little bit more of your scenario.