I have a RadWindow in my page and I am trying to show this RadWindow in a javascript function. This javascript function is on click on a html button click.
I have the following code written for RadWindow:
<
telerik:RadWindowManager ID="rwmMyWindow" runat="server" />
<
telerik:RadWindow ID="rwUploadConfirmation" runat="server" Modal="True" Width="700" Height="400" KeepInScreenBounds="True" Overlay="True" VisibleStatusbar="false" VisibleTitlebar="false" Visible="false" >
<ContentTemplate>
<asp:Label ID="lblUploadStatusMessage" runat="server" Font-Size="12px" ForeColor="Black" Font-Bold="true" />
<
input type= button ID="SaveMsg_OK" value="Continue" style="width:75px" onclick="javascript:close_uploadWindow_dlg();" />
</ContentTemplate>
</
telerik:RadWindow>
In a javascript function, I need to show this RadWindow, assign some data to the label that I have inside this.
Would like to know how do I get this done.
Thanks in advance.
Shruthi