tabSeparator
Specifies HTML or JSP code to execute between defining each adjacent pair of tabs.
Library
actabpanel
Tag class
com.actuate.activeportal.tags.tabpanel.TabSeparator
Attributes
There are no attributes for this tag. Place the desired code as the body of the tag.
Used in
<context root>\private\common\errors\error.jsp
<context root>\private\common\sidebar.jsp
Example
The following example specifies the inclusion of several images to create a dividing line between the tabs:
<ui:tabSeparator>
<TR style="width: 100%">
<TD colspan=3>
<img src="<html:rewrite page="/images/horzstretch.gif"/>
"width=100% height=8 border=0>
</TD>
</TR>
<TR style="width: 100%">
<TD colspan=3>
<img src="<html:rewrite page="/images/horzline.gif"/>"
width=100% height=1 border=0>
</TD>
</TR>
</ui:tabSeparator>