Hello
I I have the following column setup ( it is part of the radgrid, this particular configuration provides necessary visual appearance . Other columns on the grid are filterable.)
<telerik:GridTemplateColumn AllowFiltering="true" HeaderText='Select' >
<FilterTemplate>
<asp:CheckBox ID="chkSelectAll" runat="server" OnClientClick ="CheckUncheckAll(this)" />
</FilterTemplate>
<ItemTemplate>
<asp:CheckBox ID="chkStatus" runat="server" />
</ItemTemplate>
<HeaderStyle Width="30px" HorizontalAlign="Center" />
</telerik:GridTemplateColumn>
When I click on filter bar checkbox, I want to catch this event and process it in client-side javascript. It does not fire in this configuration. It does fire in <headertemplate> , but I need this setup for specific appearance.
Can somebody from telerik support point to the right combination of attributes/tags/events ? Thank you.