Hi,
I would like to edit a gridhyperlinkcolumn's navigateurl in my code behind. I have tried:
in both the PreRender and DataBound events. Any suggestions?
I would like to edit a gridhyperlinkcolumn's navigateurl in my code behind. I have tried:
RadGrid grid = (RadGrid)sender;
GridColumn column = grid.Columns.FindByUniqueName("ViewBus");
(column as GridHyperLinkColumn).NavigateUrl = "www.google.ca";
in both the PreRender and DataBound events. Any suggestions?