This is a migrated thread and some comments may be shown as answers.

Does Radwindow have to pass a url ?

1 Answer 39 Views
Window
This is a migrated thread and some comments may be shown as answers.
Gina
Top achievements
Rank 1
Gina asked on 13 May 2009, 05:26 PM
What I am would like to do is use a radwindow to return a Confirmation Number to the user. However I thought i would be able to do something similar to a tooltip. Put a table with the <windows> tag with the label that will return the number.

Is this possible... Here is the code of what I am trying to do. right now I just get the pop up but nothing updates on the label ?


 <telerik:RadWindow ID="rdwnConfNumb" runat="server" Behaviors="close, maximize" Skin="Mac" Modal="True">
            <windows>
            <telerik:RadWindow runat="server"   Width="325px"
            Height="385px">  
             <table>
            <tr>
            <td>
            <asp:Label ID="Label1" runat="server" Text="Confirmation Number: "></asp:Label>
            </td>
                <td>
                    <asp:Label ID="lblConfNumb" runat="server" Text=""></asp:Label>
                </td>
            </tr>
        </table>          
            </telerik:RadWindow>
            </windows>
    </telerik:RadWindow>

code behind:

 public void ShowConfirmNumber()
    {
        lblConfNumb.Text = _ConfirmNumber.ToString();     
        rdwnConfNumb.VisibleOnPageLoad  = true;
    }

1 Answer, 1 is accepted

Sort by
0
Georgi Tunev
Telerik team
answered on 14 May 2009, 11:36 AM
Hello Gina,

RadWindow is simply a container (like the standard browser's popup and the IFRAME element) that shows a content page, different from the browser - it works with external pages only.

We have plans to enhance the control so it would support having its content on the same page, but this would happen later this year.


Sincerely yours,
Georgi Tunev
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
Window
Asked by
Gina
Top achievements
Rank 1
Answers by
Georgi Tunev
Telerik team
Share this question
or