Hi,
i have the below code in my design which has 3 drop downs in the updatepanel and based on what is selected in the cbobusinessunit i make the required dropdownvisible and load it .
But the loding in the radcomboboxes in the update panel doesnt happen. When i change the controls to normal asp combo boxes control they work fine. but when they are radcomboboxes the drop down just appears without the data in it .
Is there any additional stuff that has to be done for radcombo boxes .
Any help is greatly apprciated.
<
td >
<asp:DropDownList ID="cboBusinessunit" runat="server" Width="204px" AutoPostBack="True" Height="19px" TabIndex="3"></asp:DropDownList>
</td>
<td>
<atlas:UpdatePanel ID ="pnlCmgActMkt" runat="server">
<ContentTemplate>
<rad:RadComboBox ID="cboMarketRad" runat="server" MarkFirstMatch="True" Visible="False" AutoPostBack="True" TabIndex="4" ></rad:RadComboBox>
<rad:RadComboBox ID="cboCMGOfficeRad" runat="server" MarkFirstMatch="True" Visible="False" TabIndex="5" AutoPostBack="True" ></rad:RadComboBox>
<rad:RadComboBox ID="cboAccountNameRad" runat="server" MarkFirstMatch="True"
Visible="False" AutoPostBack="True" TabIndex="6" ></rad:RadComboBox>
</ContentTemplate>
<Triggers>
<atlas:ControlEventTrigger ControlID ="cboBusinessunit" EventName="SelectedIndexChanged" />
</Triggers>
</atlas:UpdatePanel>
<td>
Thanks