or
removeDropDown:function(){ var _30=this.get_dropDownElement().parentNode; _30.parentNode.removeChild(_30); if(this._disposeChildElements){ Sys.WebForms.PageRequestManager.getInstance()._destroyTree(_30); }
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click Dim strScript As String = "<script language='javascript' type='text/javascript'>Sys.Application.add_load(ShowWindow);</script>" Page.ClientScript.RegisterStartupScript(Me.GetType, "ShowWindow", strScript)End Subfunction ShowWindow() { var manager = GetRadWindowManager(); var window1 = manager.GetWindowByName("SaveSiteNoteWindow"); window1.show(null, "SaveSiteNoteWindow");}<telerik:RadGrid ID="TourGrid" runat="server" AutoGenerateColumns="false" AllowSorting="false" AllowMultiRowSelection="false" OnNeedDataSource="TourGrid_NeedDataSource" OnPreRender="TourGrid_PreRender" AllowMultiRowEdit="true" OnItemCreated="TourGrid_ItemCreated"> <MasterTableView Width="100%" DataKeyNames="Id" EditMode="InPlace"> <Columns><%-- columns left out --%> <telerik:GridNumericColumn DataField="NewValue" UniqueName="NewValue" HeaderText="New value" ReadOnly="false" ColumnEditorID="GridNumericColumnEditor1" HeaderStyle-Width="175px" DataFormatString="{0:D}" AllowRounding="false" KeepNotRoundedValue="true" DataType="System.Double" /> </Columns> </MasterTableView> <ClientSettings ReorderColumnsOnClient="false" AllowDragToGroup="false" AllowColumnsReorder="false" AllowRowsDragDrop="false"> <Selecting AllowRowSelect="true" EnableDragToSelectRows="false" /> <Resizing AllowRowResize="true" AllowColumnResize="true" EnableRealTimeResize="true" ResizeGridOnColumnResize="false" /> <Scrolling AllowScroll="true" UseStaticHeaders="true" FrozenColumnsCount="1" /> <ClientEvents /> </ClientSettings> </telerik:RadGrid><telerik:GridNumericColumnEditor ID="GridNumericColumnEditor1" runat="server"> <NumericTextBox runat="server"> <NumberFormat NumericPlaceHolder="_" DecimalSeparator="," GroupSeparator="." KeepTrailingZerosOnFocus="true" AllowRounding="false" KeepNotRoundedValue="true" /> </NumericTextBox> </telerik:GridNumericColumnEditor>protected void TourGrid_PreRender(object sender, System.EventArgs e) { if (!IsPostBack) { foreach (GridItem item in this.TourGrid.MasterTableView.Items) { if (item is GridEditableItem) { GridEditableItem editableItem = item as GridDataItem; editableItem.Edit = true; } } this.TourGrid.Rebind(); } }<telerik:RadToolTipManager ID="ttm_CSMD_Backlog_By_Status_FL" runat="server" EnableShadow="true" Animation="Fade" OnAjaxUpdate="OnAjaxUpdate" HideEvent="ManualClose" AnimationDuration="2000" Position="BottomRight" RelativeTo="Element" OffsetY="0" OnClientResponseEnd="OnClientResponseEnd" OnClientBeforeShow="Configure" OnClientShow="OnClientShow"></telerik:RadToolTipManager><telerik:RadToolTipManager ID="ttm_CSMD_Backlog_By_Status_FL" runat="server" EnableShadow="true" Animation="Fade" OnAjaxUpdate="OnAjaxUpdate" HideEvent="ManualClose" AnimationDuration="2000" Position="BottomRight" RelativeTo="Element" OffsetY="0" OnClientResponseEnd="OnClientResponseEnd" OnClientBeforeShow="Configure" OnClientShow="OnClientShow"></telerik:RadToolTipManager>