Hi,
I have a RadGrid with a Template column which has a checkbox in the header and a checkbox in the Item area.
I have a RadGrid with a Template column which has a checkbox in the header and a checkbox in the Item area.
Here's the Form Decorator in the Master Page:
<telerik:RadFormDecorator ID="FormDecorator1" runat="server" Skin="Metro" DecoratedControls="Default" ControlsToSkip="Buttons" />
<telerik:GridTemplateColumn UniqueName="TemplateSelect"> <ItemTemplate> <asp:CheckBox ID="chkSelected" runat="server" OnCheckedChanged="RowCheckedChanged" /> </ItemTemplate> <HeaderTemplate> <asp:CheckBox ID="CheckBoxHeader" runat="server" OnCheckedChanged="CheckBoxHeader_CheckedChanged" /> </HeaderTemplate></telerik:GridTemplateColumn>
When I enable the FormDecorator, if I try to click on the Checkboxes (chkSelected) the Checkboxes are not selectable
but if I disable the form decorator everything works fine, I noticed that this only happens in the Checkbox
that is inside the <ItemTemplate> but not with the one that's inside the <HeaderTemplate>
Is there a fix or workaround to this issue?
Thank you.