One of the two main applications of the Telerik ASP.NET Splitter control is for implementing resizable panels, similar to frames. When the user drags the splitter bar, the panels on the left and/or right of the splitter are resized using one of the following 3 algorithms:
- AdjacentPane (default) - only the adjacent panes of the dragged split bar will be affected.
- EndPane - only the left (top) adjacent pane and the right (bottom) most pane will be affected.
- Proportional – the width (height) of the affected panels will be adjusted proportionally.
Telerik ASP.NET Splitter can be configured to show the panel content during resizing. Although user experience is improved in this mode, there is more CPU load associated with the real-time redrawing of the content.
See demo
Top