I have a RadGrid based from Telerik.Web.UI. One of my columns "AccountName" is replicated for each record so to save space I used this code to group by the "AccountName"
Which works fine however the users want to drill down on the "AccountName" field to a details page. Is there a way to add a "NavigateURL" or hyperlink to this group by expression?
If not my work around is to create a GridHyperLinkColumn with static text "View Detail" to allow the user to go to the details page. Not as clean and my horizontal space on the page is very limited.
Thanks!
| <GroupByExpressions> |
| <telerik:GridGroupByExpression> |
| <SelectFields> |
| <telerik:GridGroupByField FieldAlias="AccountName" FieldName="AccountName" HeaderText="Account"> |
| </telerik:GridGroupByField> |
| </SelectFields> |
| <GroupByFields> |
| <telerik:GridGroupByField FieldName="AccountName" FieldAlias="AccountName" HeaderText="Account"> |
| </telerik:GridGroupByField> |
| </GroupByFields> |
| </telerik:GridGroupByExpression> |
| </GroupByExpressions> |
Which works fine however the users want to drill down on the "AccountName" field to a details page. Is there a way to add a "NavigateURL" or hyperlink to this group by expression?
If not my work around is to create a GridHyperLinkColumn with static text "View Detail" to allow the user to go to the details page. Not as clean and my horizontal space on the page is very limited.
Thanks!