Hi All,
I have a radcombox, I have a add button right next to rad combox, If the user chooses something from the rdcombox box, the items moves from the combox to the listbox. I applied radAjaxmanager on the add button so that no postback can be seen if add button is clicked. I am making a panel visible in the code behing once the add button is clicked. when i apply teh ajax on the add button, the panel does not become visible. below is my code.
<td style="width: 160px" valign="top"> <telerik:RadComboBox ID="RadComboBox_Filter" runat="server" Width="156px" OnClientSelectedIndexChanging="RadComboBox_Loads" OnItemsRequested="RadComboBox_filters_ItemsRequested" EnableLoadOnDemand="True" AllowCustomText="True" EmptyMessage="Select Filters" HighlightTemplatedItems="True" </telerik:RadComboBox> </td> <td valign="top"> <telerik:RadButton runat="server" Text="Add" Width="60px" OnClick="btnAdd_Click" ID="btnAdd" SplitButtonCssClass="" SplitButtonPosition="Right"> </telerik:RadButton> </td> <td rowspan="5" valign="top" colspan="10"> <telerik:RadListBox ID="radList_Systems" runat="server" Height="65px" Width="200px" oninserted="radList_Systems_Inserted" </telerik:RadListBox> </td> </tr> <telerik:RadAjaxManager runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="btnAdd"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="radList_Systems" /> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="btnRemove"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="radList_Systems" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManager> any help will be appreciated.