or
Can you please suggest me any solution?
| <telerik:RadAjaxLoadingPanel ID="LoadingPanel_Main" runat="server" Transparency="30" BackColor="ControlLightLight" MinDisplayTime="3000" HorizontalAlign="Center"> |
| <table class="basic_text"> |
| <tr> |
| <td style="height: 10%; width: 80%; vertical-align: middle;"> |
| <img alt="<%= (string)this.GetGlobalResourceObject("Resources", "LoadingMessage") %>" src='<%= RadAjaxLoadingPanel.GetWebResourceUrl(Page, "Telerik.Web.UI.Skins.Default.Ajax.loading.gif") %>' style="border: 2;" /> |
| </td> |
| </tr> |
| </table> |
| </telerik:RadAjaxLoadingPanel> |
Thanks and Regards,
Mangesh
| <%@ Control Language="vb" AutoEventWireup="false" CodeBehind="UserControl1.ascx.vb" Inherits="UserControl1" %> |
| <%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="Telerik" %> |
| <Telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" EnableEmbeddedScripts="true" ></Telerik:RadAjaxPanel> |
| <table width="100%"> |
| <tr> |
| <td> |
| <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> |
| <asp:Button ID="buttonClear" runat="server" Text="Clear" Width="46" UseSubmitBehavior="false" |
| CausesValidation="false" OnClientClick="ClearMe();return false" /> |
| </td> |
| </tr> |
| </table> |
| Dim script1 As New StringBuilder |
| script1.AppendLine("<script language='javascript' type='text/javascript'>") |
| script1.AppendLine(" function ClearMe(){ ") |
| script1.AppendLine(" alert();") |
| script1.AppendLine(" document.getElementById(" & TextBox1.ClientID & ").value = ''; ") |
| script1.AppendLine("</script>") |
| 'I tried |
| 'Me.Controls.Add(New LiteralControl(clearScript.ToString())) |
| 'I tried |
| 'ScriptManager.RegisterStartupScript(Parent.Page, Me.GetType(), "ClearBox", script1.ToString, True) |
| 'I tried |
| If Not Parent.Page.ClientScript.IsStartupScriptRegistered("ClearBox") Then |
| Parent.Page.ClientScript.RegisterStartupScript(Me.GetType(), "ClearBox", script1.ToString, True) |
| End If |
| <script type="text/javascript"> |
| Telerik.Web.UI.RadComboBox.prototype.get_endOfItems = function() { return false; }; |
| </script> |
| <asp:UpdatePanel ID="UpdatePanel1" runat="server"> |
| <ContentTemplate> |
| <telerik:RadDockLayout ID="RadDockLayout1" runat="server" Skin="WebBlue" OnSaveDockLayout="RadDockLayout1_SaveDockLayout" |
| OnLoadDockLayout="RadDockLayout1_LoadDockLayout"> |
| <div class="span-15 append-1"> |
| <telerik:RadDockZone ID="RadDockZone1" runat="server" MinHeight="200"> |
| <telerik:RadDock ID="RadDock1" AutoPostBack="true" CommandsAutoPostBack="true" DockMode="Docked" runat="server" |
| Title="Welcome" DefaultCommands="ExpandCollapse" > |
| <ContentTemplate> |
| <div class="dockWrap"> |
| <asp:Literal ID="Literal1" runat="server" meta:resourcekey="homeWelcome"></asp:Literal> |
| </div> |
| </ContentTemplate> |
| </telerik:RadDock> |
| </telerik:RadDockZone> |
| </div> |
| <div class="span-8"> |
| <telerik:RadDockZone ID="RadDockZone2" runat="server" MinHeight="200"> |
| <telerik:RadDock ID="RadDock2" AutoPostBack="true" CommandsAutoPostBack="true" DockMode="Docked" runat="server" |
| meta:resourcekey="RadDockSpendYourPoints" DefaultCommands="ExpandCollapse"> |
| <ContentTemplate> |
| <uc2:SpendYourPoints ID="SpendYourPointsCtl" runat="server" /> |
| </ContentTemplate> |
| </telerik:RadDock> |
| </telerik:RadDockZone> |
| </div> |
| </telerik:RadDockLayout> |
| </ContentTemplate> |
| </asp:UpdatePanel> |

RadGrid.MasterTableView.IsItemInserted?
But i would like to know is there anything similar property to find the Details Tables inserted command on client side.
I have a Details Tables in which i have a grid which actually has checkbox. I want to make it enable and disable according to Command like we do for parent grid using above code.
Thanks in advance.