tabBegin
Specifies HTML or JSP code to execute before defining the first tab in a tab panel.
Library
actabpanel
Tag class
com.actuate.activeportal.tags.tabpanel.TabBegin
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
<context root>\private\newrequest\newrequestpage.jsp
<context root>\private\options\optionspage.jsp
Example
The following example specifies the inclusion of several images to create a border with rounded edges before defining the tabs:
<ui:tabBegin>
<TR>
<TD><img border=0 height=8
src="<html:rewrite page="/images/top_l_corner.gif"/>"
width=8>
</TD>
<TD><img border=0 height=8
src="<html:rewrite page="/images/horz_stretch.gif"/>"
width=100%>
</TD>
<TD><img border=0 height=8
src="<html:rewrite page="/images/top_r_corner.gif"/>"
width=8>
</TD>
</TR>
</ui:tabBegin>