I have a portal-type application that allows the creation of various "portlets".
Each portlet consists of a dynamically created RadDock, which contains a dynamically created RadAjaxLoadingPanel and RadAjaxPanel, which contains a dynamically loaded user control (ascx).
Dock
|--RadAjaxLoadingPanel
|--RadAjaxPanel
|--UserControl
When the user control inside the dock initiates a postback the update panel works as expected, centering over the individual Dock.
However, when the Dock initiates the postback, say by clicking a DockCommand button, the RadAjaxLoadingPanel doesn't display.
So, my question is:
Is there a client-side way for the Dock to tell the control inside it to initiate an action?
This would actually be useful for other situations as well.

| <%@ Page Title="" Language="C#" AutoEventWireup="true" CodeFile="DatePickerErrorTest.aspx.cs" Inherits="DatePickerErrorTest" %> |
| <html> |
| <head runat="server"> |
| </head> |
| <body> |
| <form runat="server"> |
| <telerik:RadScriptManager runat="server" /> |
| <telerik:RadDatePicker id="picker" runat="server" skin="WebBlue" /> |
| </form> |
| </body> |
| </html> |
| using System; |
| using System.Collections.Generic; |
| using System.Linq; |
| using System.Web; |
| using System.Web.UI; |
| using System.Web.UI.WebControls; |
| using System.Web.UI.HtmlControls; |
| public partial class DatePickerErrorTest : System.Web.UI.Page |
| { |
| protected void Page_Load(object sender, EventArgs e) |
| { |
| HtmlGenericControl script = new HtmlGenericControl(); |
| script.TagName = "script"; |
| script.Attributes.Add("type", "text/javascript"); |
| script.Attributes.Add("src", Page.ResolveUrl("~/Controls/Lytebox/lytebox.js")); |
| Page.Header.Controls.Add(script); |
| picker.MinDate = DateTime.Now; |
| } |
| } |
| If column("DATA_TYPE") = "varchar" Or column("DATA_TYPE") = "nvarchar" Then |
| Dim boundcol As New GridBoundColumn() |
| boundcol.UniqueName = column("FullName") |
| boundcol.HeaderText = column("FriendlyColumnName") |
| boundcol.DataField = column("FullName") |
| boundcol.HeaderTooltip = boundcol.HeaderTooltip.ToString() + " - " + column("FullName") & " - " & column("Description") |
| boundcol.ReadOnly = Boolean.Parse(column("Readonly")) |
| gridServers.MasterTableView.Columns.Add(boundcol) |
| boundcol.SortExpression = column("FullName") |
| boundcol.Groupable = True |
| boundcol.GroupByExpression = column("FullName") + " Group By " + column("FullName") |
| boundcol.AllowFiltering = True |
Hi, i used RadWindow in my application, it is working fine, but after getting RadGrid page postback if i click the radwindow ,RadWindow properties(Behaviors,Behaviors and visiblestatusbar) not working,
i used RadWindow properties like below
<telerik:RadWindow ID="History" runat="server" Height="300px"
Width="750px" Left="200px" ReloadOnShow="true" VisibleStatusbar ="false" Modal="true" Behaviors ="none"
Behavior="none" />
