Click here to Skip to main content
15,902,275 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
1.I'm having a two radcombobox with parent child combination.
2.First radcombobox acts as a Parent and Second radcombobox acts as a child.Second radcombobox will bind depends upon the First radcombobox selectedvalue
3.I'm using the SelectedindexChanged event to bind the Second radcombobox.
3.I'm also having a Button Field Event.
4.Now my problem is
when i'm Selecting the First Combobox and Clicking the Button the Second radcombobox is not binded...How to solve this type of issues..

First Combobox:

SQL
<telerik:RadComboBox ID="cbxFundingDeptName" Height="300PX" EmptyMessage="Please Select" CssClass="rad_ddl" Localization-CheckAllString="Select All"
CheckBoxes="true" runat="server"  OnClientDropDownClosed="cbxFundingAgencyClosed" OnSelectedIndexChanged="cbxFundingDeptName_SelectedIndexChanged"
CheckedItemsTexts="DisplayAllInInput" EnableCheckAllItemsCheckBox="true"  AllowCustomtext="True"></telerik:RadComboBox>


Second Combobox:

XML
<telerik:RadComboBox Height="300PX" ID="cbxContractingOfficeDeptName" EmptyMessage="Please Select" Localization-CheckAllString="Select All"
CssClass="rad_ddl" CheckBoxes="true" runat="server" OnClientDropDownClosed="cbxProcuringAgencyClosed"
CheckedItemsTexts="DisplayAllInInput" EnableCheckAllItemsCheckBox="true"  AllowCustomtext="True"></telerik:RadComboBox>


Selected Index changed Event:

VB
Protected Sub cbxFundingAgency_SelectedIndexChanged(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs)
        PopulateFundingAccount()
    End Sub



How to solve this .......
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900