Basic Customization > User Interface Customization > Customizing HTML Clients Using the Windchill JSP Framework > Split Pane / Two Pane > Customization Points
  
Customization Points
renderTwoPanes tag attributes
The renderTwoPanes tag is a custom JSP tag that you insert in the JSP.
Parameter
Default Value
Possible Values
Req?
Description
orientation
horizontal
horizontal, vertical
No
Lays out the inner panels either side by side or stacked
leftPane
Relative or absolute path to a JSP page
Yes
URI to the file to be rendered in the left/top pane
rightPane
Relative or absolute path to a JSP page
Yes
URI to the file to be rendered in the right/bottom pane
headerPane
Relative or absolute path to a JSP
No
JSP file to be rendered in the top pane. This is only used when orientation is set to “horizontal”.
onClick
Name of a valid JavaScript function
No
Function called for every click event fired from either pane (left/right or top/bottom). The click handle will most likely make an AJAX call to get the data to display. Typically, when something is clicked in one pane you’ll want to have something happen in the other pane.
leftPaneSize
25
0-100 (Percentage)
No
Specifies the width/height (depending on the orientation value) of the panel.
rightPaneSize
75
0-100 (Percentage)
No
Specifies the width/height (depending on the orientation value) of the panel.
headerPaneHeight
0
Absolute Pixel size
No
Specifies the height of the panel. Specified as an absolute pixel size (i.e. 150)