Once again I cannot remember how i managed to submit support ticket, it's not obvious from the interface.. :(
So, I post a problem here.
Please, confirm if this is already fixed in the newest version of Telerik Controls otherwise would be great, if you fixed this ASAP...
If I use client-side binding and have two labels, responsible for displaying some entity fields within GridTemplateColumn and one of them corresponds to field "Name" - then another one, if it contains word "Name" in it, ignores field value and instead also shows "Name" field value! :(
<telerik:GridTemplateColumn HeaderStyle-CssClass='GridHeaderGreen la' ItemStyle-CssClass='la' HeaderText="Model" SortExpression="SVC2.CLUSTER_STATE.NAME"> <itemtemplate> <asp:Label ID="Name" runat="server" /> </itemtemplate> </telerik:GridTemplateColumn> <telerik:GridTemplateColumn HeaderStyle-CssClass='GridHeaderGreen la' ItemStyle-CssClass='la' HeaderText="Group Name" SortExpression="SVC2.CLUSTER_STATE.GROUPNAME"> <itemtemplate> <asp:Label ID="GroupName" runat="server" /> </itemtemplate> </telerik:GridTemplateColumn>In the given case grid shows "Name" value in first and second columns! It ignores "GroupName" value, even though json data is correct!