When setting the DataField for a GridBoundColumn using dot notation, the column properly shows the value of the field on the child object.
If use the very same property on a GridHyperLinkColumn in the DataNavigateUrlFields, it doesn't work.
For example, this works:
but this doesn't:
Is this a bug? Am I doing something wrong? Is there a declarative work around?
If use the very same property on a GridHyperLinkColumn in the DataNavigateUrlFields, it doesn't work.
For example, this works:
| <telerik:GridBoundColumn DataField="ChildObject.Property" SortExpression="ChildObject.Property"> |
| </telerik:GridBoundColumn> |
but this doesn't:
| <telerik:GridHyperLinkColumn DataNavigateUrlFields="ChildObject.Property" DataNavigateUrlFormatString="page.aspx?value={0}" Text="Text"> |
| </telerik:GridHyperLinkColumn> |
Is this a bug? Am I doing something wrong? Is there a declarative work around?
