or

RadFormDecorator place is top of page after Scriptmanager<telerik:RadFormDecorator ID="_FormDecorator" Runat="server" DecoratedControls="All" Skin="Sunset" EnableRoundedCorners="true" />// Called from Devexpress ASPxGridView1_ParseValue on Insert/Updateprivate static long LongFromString(Object value){ if (value == null || String.IsNullOrEmpty((String)value)) { return 0; } else { TimeSpan span = TimeSpan.Parse((String)value); return span.Ticks; }}Here, one method is for the Grid rows and one is for edit mode.// Called from Devexpress ASPxGridView1_CellEditorInitialize on Select// AND Devexpress ASPxGridView1_CustomColumnDisplayText on Selectprivate static String StringFromBigInt(Object Value){ TimeSpan span = new TimeSpan((long)Value); if (span.Days != 0) return span.ToString("c"); String str = span.ToString(@"hh\:mm\:ss"); return String.Format("{0}", str);}Hi, I need to display a loading panel whenever I click on any button inside a RadToolbar. Thanks.
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" DefaultLoadingPanelID="RadAjaxLoadingPanel1"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="RadToolBar1"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="divDataEntry" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManager> <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Skin="Default" /><div id="divDataEntry" runat="server"> <telerik:RadTextBox ID="rtbTxtBox" runat="server" Width="10em" MaxLength="20" /></div> <telerik:RadToolBar ID="RadToolBar1" runat="server" Skin="Office2010Blue" ForeColor="Black" OnClientButtonClicked="OnClientButtonClicked" OnClientButtonClicking="OnClientButtonClicking" OnButtonClick="RadToolBar1_ButtonClick"> <Items> <telerik:RadToolBarButton runat="server" Owner="RadToolBar1" Text="Add" ForeColor="Black" ImageUrl="~/Telerik/Images/add.gif" CommandName="addcmd" Value="add" /> <telerik:RadToolBarButton IsSeparator="true" /> <telerik:RadToolBarButton runat="server" Owner="RadToolBar1" Text="Reset" ForeColor="Black" ImageUrl="~/Telerik/Images/Refresh.gif" CommandName="resetcmd" Value="reset" /> <telerik:RadToolBarButton IsSeparator="true" /> <telerik:RadToolBarButton runat="server" Owner="RadToolBar1" Text="Clear" ForeColor="Black" ImageUrl="~/Telerik/Images/Undo.gif" CommandName="clearcmd" Value="clear" /> <telerik:RadToolBarButton IsSeparator="true" /> <telerik:RadToolBarButton runat="server" Owner="RadToolBar1" Text="Save" ForeColor="Black" ImageUrl="~/Telerik/Images/Save.gif" CommandName="savecmd" Value="save" ValidationGroup="required" /> </Items> </telerik:RadToolBar>protected void RadGrid1_ItemUpdated(object source, Telerik.Web.UI.GridUpdatedEventArgs e){e.Item.SavedOldValues.Value;TextBox newCompanyName = (TextBox)item.FindControl("Company_NameTextBox"); // Get new Value// Get Old Value but can't find Label while in ItemUpdatedTextBox newCompanyName = (TextBox)item.FindControl("Company_NameLabel"); }