This is the definition i was using:
<radW:RadWindowManager ID="wmSingleton" VisibleOnPageLoad="False" OffsetElementID="OffsetElement"
runat="server" OnClientPageLoad="OnClientPageLoad">
<Windows>
<radW:RadWindow ID="winSymbol" runat="server" Height="460px" Width="925px" Behavior="Close"
Title="" NavigateUrl="ListEdit.aspx" Modal="True" ReloadOnShow="false" OnClientClose="PostbackOnDialogClose"
VisibleStatusbar="false" VisibleTitlebar="true" Skin="SfStyleClear" EnableEmbeddedSkins="false" ></radW:RadWindow>
</Windows>
</radW:RadWindowManager>
This is the script method for "OnClientPageLoad":
function OnClientPageLoad(radWindow)
{
radWindow.set_OpenerElementID = 'link_<%= this.ID %>Menu';
}
But the method is not firing when the client page is getting visible. need a solution ASAP.
<radW:RadWindowManager ID="wmSingleton" VisibleOnPageLoad="False" OffsetElementID="OffsetElement"
runat="server" OnClientPageLoad="OnClientPageLoad">
<Windows>
<radW:RadWindow ID="winSymbol" runat="server" Height="460px" Width="925px" Behavior="Close"
Title="" NavigateUrl="ListEdit.aspx" Modal="True" ReloadOnShow="false" OnClientClose="PostbackOnDialogClose"
VisibleStatusbar="false" VisibleTitlebar="true" Skin="SfStyleClear" EnableEmbeddedSkins="false" ></radW:RadWindow>
</Windows>
</radW:RadWindowManager>
This is the script method for "OnClientPageLoad":
function OnClientPageLoad(radWindow)
{
radWindow.set_OpenerElementID = 'link_<%= this.ID %>Menu';
}
But the method is not firing when the client page is getting visible. need a solution ASAP.