Element
|
Type
|
Description
|
---|---|---|
RenderTwoPanesTag.java
|
Java class
|
The tag that renders out the two pane component in a JSP
|
navigation.jsfrag
|
JavaScript Fragment
|
Renders the component to the DOM
|
<your_left_pane>.jsp
|
JSP
|
The JSP to have displayed in the left or top pane, depending on the orientation value (horizontal|vertical).
|
<your_right_pane>.jsp
|
JSP
|
The JSP to have displayed in the right or bottom pane, depending on the orientation value (horizontal|vertical).
|
<your_header_pane>.jsp
|
JSP
|
The JSP to have displayed in the top pane when orientation is set to horizontal.
|
<your_javascript_file>.js
|
JavaScript file
|
Contains your click handler function (if specified). The click handler is a Javascript function that will be 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.
|
|
Ensure the value for the “renderTo” attribute matches the id given to the DIV element in previous step.
|