I have filters on my radgrid. One of my columns is a checkbox column:
After I filter the grid my gridcommandeventargs always have an e.item with a TypeOf "GridFilteringItem" instead of a "GridDataItem."
It's like the filter is the only thing sending events now instead of whichever row/control I click on. The GridFilteringItem always has a DataItem = Nothing as well.
Since the filter is the only thing firing events I cannot capture my CheckBox.CheckChanged event.
Any hints?
<radg:GridTemplateColumn HeaderStyle-Width="40px" ItemStyle-Width="40px" AllowFiltering="false" |
HeaderText="In/Out" UniqueName="ownershipcolumn"> |
<ItemTemplate> |
<asp:CheckBox AutoPostBack="true" id="chkOwned" runat="server"></asp:CheckBox> |
</ItemTemplate> |
</radg:GridTemplateColumn> |
After I filter the grid my gridcommandeventargs always have an e.item with a TypeOf "GridFilteringItem" instead of a "GridDataItem."
It's like the filter is the only thing sending events now instead of whichever row/control I click on. The GridFilteringItem always has a DataItem = Nothing as well.
Since the filter is the only thing firing events I cannot capture my CheckBox.CheckChanged event.
Any hints?