RadSplitter allows to be resized with the resize of the window. This is possible
when the Width or Height (or both Width and Height)
properties are defined in percents.
If you have problems to resize the splitter in a full page height here is the following checklist:
- Make sure the <HTML> and <BODY> elements have height set to 100% and margin set to 0px.
- Make sure any elements that are embedding the splitter control also has those properties set
<div id="ParentDivElement" style="height: 100%;">
- Optionally in order your page to be standards compliant you can set the DOCTYPE directive to:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/tr/xhtml11/dtd/xhtml11.dtd">
- Optionally you can also remove the page scrollbars so the application is as close
to the desktop environment as possible:
<body scroll="no" >
You can disable the resizing of the control with the window by setting the ResizeWithBrowserWindow
to false.