I have a RadGrid with a template column. Here is the column's markup:
Can I group by the value bound in the label's text property? If so, how?
<telerik:GridTemplateColumn FilterControlAltText="Filter TemplateColumnMaterial column" HeaderText="Material" UniqueName="TemplateColumnMaterial"><ItemTemplate> <asp:Label ID="LabelMaterialSubstring" runat="server" Text='<%#Eval("material").ToString().Substring(7, 3) %>'></asp:Label></ItemTemplate></telerik:GridTemplateColumn>Can I group by the value bound in the label's text property? If so, how?