RadWindow for ASP.NET

Telerik RadWindow Basics Send comments on this topic.
See Also
Basic Definition and Structure > Telerik RadWindow Basics

Glossary Item Box

Telerik RadWindow is an unique component that can replace the standard browser dialogs and alert/prompt/confirm boxes. Developers can easily build modal and non-modal dialogs and windows, individually or in groups that mimic the behavior of the Windows taskbar. You can fully configure Telerik RadWindow with just setting its properties. No codebehind is necessary.

All window objects are handled trough a window manager. For easier customization, the common properties that are set in the manager apply to all child windows, and each individual window can override these with a new value.

 

 

Example 

Telerik

 

ASP.NET Copy Code
<rad:RadWindowManager
               
id="RadWindowManager1"
               
VisibleOnPageLoad="true"
               
Skin = "System"
               
Behavior="close"
               
runat="server">
               
<windows>
                   
<rad:RadWindow
                       
OffsetElementId="NavigationDiv"
                       
NavigateUrl="ExampleFiles/denverHouse.html"
                       
Runat="server"
                       
Width="400px"
                       
Height="249px"
                       
Top = "150"
                       
Left="640"
                       
Id="NavigationWindow"></rad:RadWindow>
               
</windows>
           
</rad:RadWindowManager>

See Also