Hello !
for example my radgrid datasource is Product table , and every product is related to another table ProductType.
is it possible to group radgrid by product types?
i tryed this syntax :
<GroupByExpressions>
<telerik:GridGroupByExpression>
<SelectFields>
<telerik:GridGroupByField FieldAlias="Type" FieldName="ProductType.Name"></telerik:GridGroupByField>
</SelectFields>
<GroupByFields>
<telerik:GridGroupByField FieldName="ProductType.Name" SortOrder="Ascending"></telerik:GridGroupByField>
</GroupByFields>
</telerik:GridGroupByExpression>
</GroupByExpressions>
but, without any luck.
Thank You !