I have a RadCombpBox inside a fieldset <li>. Below that <li> I have a PlaceHolder with visibility set to false with an <li> isnide it. When my RadCombo box uses ajax to call OnSelectedIndexChange I want to set the visibility of the PlaceHolder to true. When this runs I get an client Unknown runtime error.
As a test if I rap the entire fieldset in a placeholder and set visible to false. Then use another cobo box outside the fieldset using ajax to post back and make the outer placeholder visible. Then i go and use the innner combo in the <li> to make the inner placholder in the <li> visible, this works ok.
PS I also cannot get the client api working this way.
Please help.
Thanks
<
telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" OnAjaxSettingCreating="RadAjaxManager1_AjaxSettingCreating" DefaultLoadingPanelID="RadAjaxLoadingPanel1">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="rcbNOI">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="PHTest"/>
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="rcbShow">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="ShowMe"/>
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<div id="questionset">
<asp:PlaceHolder ID="ShowMe" runat="server" Visible="true">
<fieldset>
<ol>
<li>
<div><telerik:RadComboBox Width="265px" ID="rcbNOI" runat="server" RadComboBoxImagePosition="Right"
AutoPostBack="true" OnSelectedIndexChanged="rcbNOI_SelectedIndexChanged" EnableEmbeddedSkins="False"
Skin="B2C">
<Items>
<telerik:RadComboBoxItem runat="server" Text="No" Value="No" />
<telerik:RadComboBoxItem runat="server" Text="Yes" Value="Yes" />
</Items>
<CollapseAnimation Duration="200" Type="OutQuint" />
<ExpandAnimation Type="OutQuart" />
</telerik:RadComboBox>
</div>
</li>
<asp:PlaceHolder runat="server" ID="PHTest" Visible="false">
<li >
<telerik:RadTextBox EnableEmbeddedSkins="False" Skin="B2C" ID="radNOI" runat="server">
</telerik:RadTextBox>
</li>
</asp:PlaceHolder>
<li>a</li>
</ol>
</fieldset>
</asp:PlaceHolder>
<telerik:RadComboBox Width="265px" ID="rcbShow" runat="server" RadComboBoxImagePosition="Right"
AutoPostBack="true" OnSelectedIndexChanged="rcbShow_SelectedIndexChanged" EnableEmbeddedSkins="False"
Skin="B2C">
<Items>
<telerik:RadComboBoxItem runat="server" Text="No" Value="No" />
<telerik:RadComboBoxItem runat="server" Text="Yes" Value="Yes" />
</Items>
<CollapseAnimation Duration="200" Type="OutQuint" />
<ExpandAnimation Type="OutQuart" />
</telerik:RadComboBox>
</
div>
</
asp:Content>