I have a hierarchial grid that displays applications on the top level. Under each application I display the users for that application. What I want to do is have the username linked to the page for that user. I thought it was a fairly simple issue to solve but after a few hours trolling the forums and digging through the documentation I still can't figure out how to accomplish what I need.
I need to set the NavigateUrl for each user server side because we encrypt the querystring on the URL link to a user. For a normal grid I simply subscribe to the OnDataBound event for the grid and in that method I get the Hyperlink instance and set it using information from from the row (as seen here).
I tried subscribing to the OnDataBound event on the DetailTable GridTableView but the event never fires.
I know this could probably be accomplished by encrypting the data and putting it in the object bound for the detailTable for each user before the databind but I'd rather do it by not modifying the object that I bind to.
Is this possible?
Thanks.
I need to set the NavigateUrl for each user server side because we encrypt the querystring on the URL link to a user. For a normal grid I simply subscribe to the OnDataBound event for the grid and in that method I get the Hyperlink instance and set it using information from from the row (as seen here).
I tried subscribing to the OnDataBound event on the DetailTable GridTableView but the event never fires.
I know this could probably be accomplished by encrypting the data and putting it in the object bound for the detailTable for each user before the databind but I'd rather do it by not modifying the object that I bind to.
Is this possible?
Thanks.