I have RadComboBox and asp.net Checkbox inside RadAjaxPanel in usercontrol like this:
<telerik:RadAjaxPanel ID="rapOrganization" runat="server">
<telerik:RadComboBox ID="cboOrganizations" runat="server" ErrorMessage="aaa" EmptyMessage="No organization set" AutoPostBack="true"
EnableLoadOnDemand="True" OnClientItemsRequesting="OnClientItemsRequesting" EnableVirtualScrolling="true"
EnableItemCaching="true" Height="150px" OnItemsRequested="cboOrganizations_ItemsRequested"
ShowMoreResultsBox="true" MarkFirstMatch="true" Width="250px">
</telerik:RadComboBox>
<asp:CheckBox ID="chkActiveOrg" runat="server" CssClass="chkStyle" Text="Active Only" Width="80" />
</telerik:RadAjaxPanel>
After text changing on server side I allways got false for checkbox value. On itemsrequest only combobox data is available, checkbox state is wrong. Is there any solution for this?
<telerik:RadAjaxPanel ID="rapOrganization" runat="server">
<telerik:RadComboBox ID="cboOrganizations" runat="server" ErrorMessage="aaa" EmptyMessage="No organization set" AutoPostBack="true"
EnableLoadOnDemand="True" OnClientItemsRequesting="OnClientItemsRequesting" EnableVirtualScrolling="true"
EnableItemCaching="true" Height="150px" OnItemsRequested="cboOrganizations_ItemsRequested"
ShowMoreResultsBox="true" MarkFirstMatch="true" Width="250px">
</telerik:RadComboBox>
<asp:CheckBox ID="chkActiveOrg" runat="server" CssClass="chkStyle" Text="Active Only" Width="80" />
</telerik:RadAjaxPanel>
After text changing on server side I allways got false for checkbox value. On itemsrequest only combobox data is available, checkbox state is wrong. Is there any solution for this?