This demo showcases the two different rendering modes of Telerik's ASP.NET Dialog Window: Classic and Lightweight.
-
Classic rendering is the long-standing rendering mode of the control in which its layout is implemented using table elements.
-
Lightweight rendering leverages HTM5 and CSS3, but the control may lose its rounded corners, gradients and shadows in non-modern browsers. With this mode, the control layout is implemented using generic elements, such as div and span, as well as semantic elements for the title (h6).
There is also a Native render mode option inherited directly from RenderMode. As RadWindow does not have a specific HTML element, the Native render mode will have the same effect as the Classic one.
The default render mode of the control is Classic and you have the option to either explicitly set it to Lightweight or leverage the Auto mode to have the control choose the best rendering based on the user's browser.
Note: In order to provide optimal experience for your end users, we recommend that you use only one type of render mode for a control on a given page. For example, if you have two instances of RadWindow or RadWindowManager on the page, it will be best if both of them use the same render mode.
Note: The Material skin is available only for the modern Lightweight render mode.
Change the skin or the mode to properly visualize the demonstrated control.
Notes on the statistics:
* - The markup is obtained through the dev toolbar of the browser, because the popup element of the RadWindow is created with JavaScript. The HTML that is measured is just the popup element, where there is a change in the rendering. Apart from length of the HTML string, the semantics, number and nesting of the various elements is also important. In Lightweight mode there are several times less elements that are not nested deeply.
** - The image sprite that causes the increase in size is a common one, used by various Telerik controls on the page, so with more controls the benefits will be more apparent.