How to add hyperlink to an ultragrid column
where the link directs to new page consisting of the data related to tha ID
Here is another KB file that shows the example.
http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.Aspx?ArticleID=1383
hs2
hi guys,
Looking at this thread, and a few others when searching. I have tried the approach listed in this thread, and this KB (http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.Aspx?ArticleID=1383) but it isn't working. When I click my link, I go to the directory. Any help would be much appreciated. I am sure it is something simple I am missing.
my initialize row (i set a break point, and it is being hit) but my link takes me to http://localhost:2917/ (Directory Listing -- /)
protected void uwg_NoFutureApts_InitializeRow(object sender, Infragistics.WebUI.UltraWebGrid.RowEventArgs e) { e.Row.Cells[0].TargetURL = "@[_blank]RescheduleAttempt.aspx?id=" + e.Row.Cells[7].Value.ToString(); }