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.
Hello,
The scenario is like this: the content is not the raw hyper link, but the hyper link has seperate content. eg: a cell would display like this: click me. So how do I do that? Thank you for replying.
As long as the HTMLEncodeContent property of your column is set to true (which is its default value), you can also put the raw HTML that you want to display in your cell. If you have a hyperlink you want to show in your cell, with certain text and a certain target URL, this provides an alternate way to accomplish the same task.