Quick Links
ASP.NET Splitter Documentation - Server Side
Vertical Splitter - Properties
;
Horizontal Splitter - Properties
;
Vertical & Horizontal Splitter - Properties
;
Vertical & Horizontal Splitter - Events
;
Vertical Splitter Panels - Properties
;
Horizontal Splitter Panels - Properties
;
Vertical & Horizontal Splitter Panels - Properties
;
<%@ Register TagPrefix="obspl" Namespace="OboutInc.Splitter2" Assembly="obout_Splitter2_Net" %>
Vertical Splitter - Properties - settings
Name
Description
Width
Width of the splitter.
Optional
FooterHeight
Height to leave for the footer under the splitter.
Optional
Only works when splitter is directly between
<body>
tags.
CollapseLeftTooltip
Set the left collpase image tooltip.
Optional
Default value is "
Collpase the left panel
".
CollapseRightTooltip
Set the right collpase image tooltip.
Optional
Default value is "
Collpase the right panel
".
ExpandLeftTooltip
Set the left expand image tooltip.
Optional
Default value is "
Expand the left panel
".
ExpandRightTooltip
Set the right expand image tooltip.
Optional
Default value is "
Expand the right panel
".
Horizontal Splitter - Properties - settings
Name
Description
Height
Height of the splitter.
Optional
WidthAfter
Width to leave to the right of the splitter.
Optional
Only works when splitter is directly between
<body>
tags.
CollapseTopTooltip
Set the top collpase image tooltip.
Optional
Default value is "
Collpase the top panel
".
CollapseBottomTooltip
Set the bottom collpase image tooltip.
Optional
Default value is "
Collpase the bottom panel
".
ExpandTopTooltip
Set the top expand image tooltip.
Optional
Default value is "
Expand the top panel
".
ExpandBottomTooltip
Set the bottom expand image tooltip.
Optional
Default value is "
Expand the bottom panel
".
Vertical & Horizontal Splitter - Properties - settings
Name
Description
CookieDays
Number of days to keep the position of the splitter separator in a cookie.
The position is saved in user's cookie when moving the splitter separator, so the same position is automatically set on later visits.
Optional
Default value is 30.
Also check
CookieDays
example.
LiveResize
Specifies the type of splitter panels resizing.
Optional
If
true
the resize is done in real time. Accepted values are
true
,
false
.
Default value is
false
.
Also check these examples:
Default Resize
,
Live Resize
.
IsResizable
Specifies whether the splitter can be resized or not.
Optional
Accepted values are
true
,
false
.
Default value is
true
.
Also check
Fixed Splitter
example.
PanelResizable
Specifies wich panel of the splitter will be resized in case of window resizing.
Optional
Accepted values are:
·
VerticalPanelResizableType.left
,
VerticalPanelResizableType.right
for Vertical Splitter.
·
HorizontalPanelResizableType.top
,
HorizontalPanelResizableType.bottom
for Horizontal Splitter.
Default value is:
·
VerticalPanelResizableType.right
for Vertical Splitter.
·
HorizontalPanelResizableType.bottom
for Horizontal Splitter.
Also check
PanelResizable
example.
HideBeforeLoad
Specify which panels to hide before splitter is completely loaded.
Optional
Accepted values are:
·
VerticalHideBeforeLoadType.none
,
VerticalHideBeforeLoadType.both
,
VerticalHideBeforeLoadType.left
,
VerticalHideBeforeLoadType.right
for Vertical Splitter.
·
HorizontalHideBeforeLoadType.none
,
HorizontalHideBeforeLoadType.both
,
HorizontalHideBeforeLoadType.top
,
HorizontalHideBeforeLoadType.bottom
for Horizontal Splitter.
Default value is:
·
VerticalHideBeforeLoadType.both
for Vertical Splitter.
·
HorizontalHideBeforeLoadType.both
for Horizontal Splitter.
Also check
HideBeforeLoad
example.
RemeberScrollPosition
Specify if panels should keep their scroll position after postback.
Optional
Accepted values are
true
,
false
.
Default value is
false
.
Also check
Remember scroll position
example.
SynchronizeScroll
Specify if panels content scroll should synchronize.
Optional
Accepted values are
true
,
false
.
Default value is
false
.
Also check
Synchronize Scroll
example.
CollapsePanel
Specifies wich panel of the splitter will collapse on separator click.
Optional
Accepted values are:
·
VerticalCollapsePanelType.none
,
VerticalCollapsePanelType.left
,
VerticalCollapsePanelType.right
for Vertical Splitter.
·
HorizontalCollapsePanelType.none
,
HorizontalCollapsePanelType.top
,
HorizontalCollapsePanelType.bottom
for Horizontal Splitter.
Default value is:
·
VerticalCollapsePanelType.none
for Vertical Splitter.
·
HorizontalCollapsePanelType.none
for Horizontal Splitter.
Also check
Collapse/Expand panel
example.
Vertical & Horizontal Splitter - Events
Name
Description
OnSplitterResize
The name of the client side event method to be executed on splitter panels resize.
Default value is
ob_spl_OnSplitterResize
.
Server code:
Splitter1.OnSplitterResize = "SplitterResizeEvent";
Client code:
function SplitterResizeEvent() { ...
OnSplitterInitEnd
The name of the client side event method to be executed on splitter initialization end.
Default value is
ob_spl_OnSplitterInitEnd
.
Server code:
Splitter1.OnSplitterInitEnd = "SplitterInitEnd";
Client code:
function SplitterInitEnd() { ...
OnSplitterCollapseExpand
The name of the client side event method to be executed on splitter panel collapse or expand.
Default value is
ob_spl_OnSplitterCollapseExpand
.
Server code:
Splitter1.OnSplitterCollapseExpand = "SplitterCollapseExpand";
Client code:
function SplitterCollapseExpand(mode, type) {
// mode - collapse/expand
// type - left/right/top/bottom
...
Vertical Splitter - LeftPanel, RightPanel - Properties - settings
Name
Description
WidthDefault
Default width of the panel.
Optional
Left panel has priority over right panel.
This is the size that is initially set on load.
Default value is 200.
Also check
Splitter size
tutorial.
WidthMin
Minimum width of the panel.
Optional
Left panel has priority over right panel.
Also check
Panels Min/Max size
tutorial.
WidthMax
Maximum width of the panel.
Optional
Left panel has priority over right panel.
Also check
Panels Min/Max size
tutorial.
Horizontal Splitter - TopPanel, BottomPanel - Properties - settings
Name
Description
HeightDefault
Default height of the panel.
Optional
Top panel has priority over bottom panel.
This is the size that is initially set on load.
Default value is 200.
Also check
Splitter size
tutorial.
HeightMin
Minimum height of the panel.
Optional
Top panel has priority over bottom panel.
Also check
Panels Min/Max size
tutorial.
HeightMax
Maximum height of the panel.
Optional
Top panel has priority over bottom panel.
Also check
Panels Min/Max size
tutorial.
Vertical & Horizontal Splitter - Header, Footer, Content - Properties - settings
Name
Description
Url
Page to load inside the component area.
Optional
This property is available for Header, Content and Footer.
Also check
How to open URL in a panel
tutorial.
Height
Height of the component area.
Optional
This property is available for Header and Footer only.
Default value is 100px.
"
The components Obout has are very cool ... keep up the good work
"
Barry Cedergren
Random testimonial
All testimonials
obout.com
obout.com Home
News
Splitter Home
Splitter Home
Download
Site Map
Examples
- 42
Address Book
E-mail Client
File Browser
PDF Library
Thumbnails Resize
Company Details
Live Map
Different Styles
- 6
Default
Default2
Default light
ICQ
Obout Inc
Media center
Right panel loading
- 5
How to open URL in a panel
Set URL on server
Open URL on click
Panel refresh
Show loading text/icon
Integration
- 6
Default with TreeView
With Slide Menu
With Flyout
With Easy Menu
Inside Window
With MS Update Panel
Other Features
- 18
Synchronize Scroll
Remember Scroll Position
Nested splitters
Resize splitter panels
- 3
Default Resize
Live Resize
Fixed Splitter
Collapse/Expand panel
Initial Collapsed panel
Collapse/Expand fixed panel
Collapsed panel - postback
Move separator by value
Get panel size
OnSplitterResize
CookieDays
HideBeforeLoad
PanelResizable
Optional Header and Footer
Multiple Splitters
Knowledge Base
- 1
Knowledge Base
Documentation
- 5
Server-side
- 2
Standard
Styles properties
Client-side
Using the correct path
ChangeLog
Tutorials
- 8
Splitter Size
Panels Min/Max Size
With TreeView
With TreeView 2
With TreeView 3
Access Splitter from panel
Print
Customize
ASP.NET 2.0-4.0
AJAX Page
Calendar
Color Picker
Date Picker
File Upload Progress
Flyout
Grid
HTML Editor
Image Zoom
Listbox
Multilevel Listbox
Show
Spell Checker
Splitter
Super Form
Tab Strip
TreeView
Tree_DB
Window
Menu
Context Menu
Easy Menu
Slide Menu
Text Menu
Combobox
Combobox
AJAX Autosuggest
Multilevel Combobox
State Selector
Interface Controls
Button
Checkbox
Dropdown List
Multiline Textbox
Radio Button
Textbox
ASP.NET 3.5-4.0
Color Picker
File Upload
HTML Editor
Spell Checker
TreeView
ASP.NET MVC
Combobox
HTML Editor
Interface Controls
Listbox
Multilevel Combobox
Multilevel Listbox
State Selector
Download
Suite for ASP.NET
Customer log-in
Support
Knowledge base
Contact support
Install FAQ
Mailing list
Purchase
Purchase page
Contact Sales
License info
Terms of use
Company
Testimonials
Clients
Contact us