How can we find the checked items/values in a combobox(cmobx having checkbox ) and this combobos is located in rad grid..S
ee the attached image and code
ee the attached image and code
<telerik:RadGrid ID="RadGrid1" runat="server" Width="100%" ShowStatusBar="true" AutoGenerateColumns="true" PageSize="10" AllowSorting="True" AllowMultiRowSelection="False" AllowPaging="True" OnNeedDataSource="RadGrid1_NeedDataSource" Skin="MyCustomSkin" EnableEmbeddedSkins="false" OnItemDataBound="RadGrid1_ItemDataBound" OnItemCreated="RadGrid1_ItemCreated"> <PagerStyle Mode="NumericPages"></PagerStyle> <MasterTableView AutoGenerateColumns="false"> <Columns> <telerik:GridTemplateColumn HeaderText="Indian Affairs Benefits" ItemStyle-Width="90px" UniqueName="IndianAffairsBenefits"> <ItemTemplate> <telerik:RadComboBox Skin="Inox" ID="ddOnelChild" runat="server" EnableEmbeddedSkins="False" MarkFirstMatch="True" Width="120px" Visible="false"> </telerik:RadComboBox> <telerik:RadComboBox Visible="false" Skin="Inox" ID="ddlMeAndSelectedChildren" runat="server" EnableEmbeddedSkins="False" MarkFirstMatch="True" Width="120px"> <ItemTemplate> <asp:CheckBox ID="chkbx" Checked="true" runat="server" /> <asp:Label runat="server" ID="lblItem" AssociatedControlID="chkbx"> <%# Eval("Namess") %> </asp:Label> </ItemTemplate> <CollapseAnimation Type="OutQuint" Duration="200" /> </telerik:RadComboBox> </ItemTemplate> </telerik:GridTemplateColumn>