hello is it possible to have a Groupbyexpression render as a link? I would like to be able to pass the friendly name to the user and the recordid in the url. something like <a href=# onclick=openRadWindow('1105512'); return false;>2009 Mazda Miata</a>
This is my current group by expression and format string .. however you will note I have used {0} for both instances.
This is my current group by expression and format string .. however you will note I have used {0} for both instances.
Would LOVE to see : Mazda Miata: Avaialable: 1
RENDERS AS: RecordID: 80329; Available: 1
| <GroupByExpressions> |
| <telerik:GridGroupByExpression> |
| <GroupByFields> |
| <telerik:GridGroupByField FieldAlias="Description" FieldName="RecordID" /> |
| </GroupByFields> |
| <SelectFields> |
| <telerik:GridGroupByField FieldName="RecordID" FormatString="<a href=# onclick=openRadWindow('{0}'); return false;>{0}</a>" /> |
| <telerik:GridGroupByField FieldName="Countitem" Aggregate="Count" HeaderText="Available"/> |
| </SelectFields> |
| </telerik:GridGroupByExpression> |
| </GroupByExpressions> |
The current string does work to popup the information (I have no idea how without any quotes...) , however I really would prefer to see the description.
thanks
mac