or
<telerik:RadAjaxManager ID="ramPopup" runat="server" > <AjaxSettings> <telerik:AjaxSetting AjaxControlID="ibFind"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="ibFind" LoadingPanelID="ralpLoadingPanel"/> <telerik:AjaxUpdatedControl ControlID="rgGrid" LoadingPanelID="ralpLoadingPanel"/> <telerik:AjaxUpdatedControl ControlID="cvSearchArgs" /> <telerik:AjaxUpdatedControl ControlID="rtt" LoadingPanelID="ralpLoadingPanel"/> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="rgGrid"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="rgGrid" LoadingPanelID="ralpLoadingPanel"/> <telerik:AjaxUpdatedControl ControlID="rtt" LoadingPanelID="ralpLoadingPanel"/> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="ibSelect"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="ibSelectIndividual" LoadingPanelID="ralpLoadingPanel"/> <telerik:AjaxUpdatedControl ControlID="rtt" LoadingPanelID="ralpLoadingPanel"/> <telerik:AjaxUpdatedControl ControlID="script" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManager><telerik:RadToolTip ID="rtt" runat="server" EnableShadow="true" IsClientID="true" EnableViewState="true" ShowCallout="false" Position="Center" Animation="Slide" AutoCloseDelay="6000" Width="400px" > <div id="Div1" class="message message-notice"> <div class="image"> <img src="/resources/images/icons/notice.png" alt="Error" height="32" /> </div> <div class="text"> <asp:Label runat="server" id="lblNotification" ></asp:Label> </div> <div class="dismiss"> <a href="#message-error"></a> </div> </div> </telerik:RadToolTip>private void displayNotification(string notification) { lblNotification.Text = notification; rtt.Show(); }<telerik:RadWindowManager ID="rwmPopUps" runat="server" Skin="Vista"> <Windows> <telerik:RadWindow Skin="Vista" ID="rw" runat="server" Title="Subject Search" Left="150px" ReloadOnShow="true" Modal="true" AutoSize="true" Style="z-index:2000" /> </Windows> </telerik:RadWindowManager> <telerik:RadCodeBlock ID="RadCodeBlock1" runat="server"> <script type="text/javascript"> function ShowProviderForm() { window.radopen("NewPopUp.aspx", "rw"); return false; } function refreshData(arg) { if (arg) { $find("<%= ramRequestEntry.ClientID %>").ajaxRequest(arg); } } </script> </telerik:RadCodeBlock>protected void ibSelect_Click(object sender, ImageClickEventArgs e) { if (rgGridInviduals.SelectedValue != null) { string selected = rgGrid.SelectedValue.ToString(); clearForm(); RadScriptManager.RegisterStartupScript(Page, Page.GetType(), "Selected", string.Format("CloseAndRebind('{0}');", selected), true); } else { displayNotification("Please select a subject"); } }

<telerik:RadComboBox runat="server" ID="comboBoxA" EnableLoadOnDemand="true" OffsetX="170"> <WebServiceSettings Method="GetItems" Path="WebService.asmx" /></telerik:RadComboBox><telerik:RadEditor DialogsCssFile="~/Common/css/RTLRadEditorStyle/RadEditor_Dialogs_RTL.css"></telerik:RadEditor> <telerik:radeditor runat="server" ID="AnsrRadEditor" SkinID="DefaultSetOfTools" Width="80%" Height="700px" Content='<%# DataBinder.Eval( Container, "DataItem.Ansr") %>' DialogsCssFile="~/Common/css/RTLRadEditorStyle/RadEditor_Dialogs_RTL.css" ContentAreaCssFile="~/Common/css/RTLRadEditorStyle/EditorContentArea_RTL.css" > <ImageManager ViewPaths="~/Forums/Pages/FAQs/Imgs" DeletePaths="~/Forums/Pages/FAQs/Imgs" UploadPaths="~/Forums/Pages/FAQs/Imgs" /> </telerik:radeditor>