<sas:NavigationBarColumnScrollingElement>

The Custom Tag Handler Class for the NavigationBarColumnScrollingElement

Syntax

<sas:NavigationBarColumnScrollingElement
   [actionProvider="java.lang.String"]
   [firstVisible="true|false"]
   [gotoFieldInMessage="true|false"]
   [gotoFieldLabel="java.lang.String"]
   [gotoFieldVisible="true|false"]
   [id="value"]
   [instantiate="true|false"]
   [lastVisible="true|false"]
   [locale="java.util.Locale"]
   [messageOrientation="CENTER|TOP|BOTTOM|LEFT|RIGHT"]
   [messageTemplate="java.lang.String"]
   [model="java.lang.String"]
   [nextVisible="true|false"]
   [pageBackwardVisible="true|false"]
   [pageForwardVisible="true|false"]
   [previousVisible="true|false"]
   [ref="java.lang.String"]
   [render="true|false"]
   [scope="page|request|session|application"]
   [styleClassPrefix="java.lang.String"]
   [URLTemplate="java.lang.String"] />

Attributes

actionProviderThe HttpActionProvider object used by the TranformationBean.
firstVisibleIf true, then the first action will be displayed when the NavigationBarScrollingElement is rendered.
gotoFieldInMessageIf true, then the gotoField should be displayed in the NavigationBarScrollingElement's message when the element is rendered.
gotoFieldLabelSets the label used with the goto field when displaying the goto field.
gotoFieldVisibleIf true, then the gotoField action will be displayed when the NavigationBarScrollingElement is rendered.
idCase-sensitive name used to identify the object instance.
instantiateFlag that, if true, indicates that a new instance of the underlying class should be loaded if one cannot be found in PageContext. Must be used with an id attribute.
lastVisibleIf true, then the last action will be displayed when the NavigationBarScrollingElement is rendered.
localeSpecifies the locale to use for this instance of the class.
messageOrientationThe position to display the scrolling element's message in reference to the scrolling actions. Valid values are TOP, BOTTOM, LEFT, RIGHT, and CENTER. If not set, the default is CENTER which will display the messages between the forward and backward scrolling actions.
messageTemplateThe String used as a template which is used to generatate the scrolling element's message. For example, when using a NavigationBarRowScrollingElement, to generate a message of the form: "Rows 1 - 10 of 100", you would set the messageTemplate to: "Rows %STARTROW - %ENDROW of %ROWCOUNT". If isGotoFieldInMessage is true, then the gotoField will be used as the substitute value for %STARTROW.
modelThe model of the NavigationBarElement. It must implement com.sas.servlet.tbeans.navigationbar.BaseNavigationInterface.
nextVisibleIf true, then the next action will be displayed when the NavigationBarScrollingElement is rendered.
pageBackwardVisibleIf true, then the pageBackward action will be displayed when the NavigationBarScrollingElement is rendered.
pageForwardVisibleIf true, then the pageForward action will be displayed when the NavigationBarScrollingElement is rendered.
previousVisibleIf true, then the previous action will be displayed when the NavigationBarScrollingElement is rendered.
refThe variable String value that represents an object created earlier in the same scope.
renderFlag that, if true, indicates that the complete markup of the bean is output when the tag is closed. It also sets the the visible property on the underlying TransformationBean.
scopeThe scope (or page context) within which the reference is available.
styleClassPrefixThe string use for setting the styleClassPrefix on the NavigationBar element.
URLTemplateThe Viewer's URLTemplate. This is the template pattern String used in the URL.

More Information

To view the documentation for the related TransformationBean, see com.sas.servlet.tbeans.navigationbar.html.NavigationBarColumnScrollingElement.

If you need to subclass the tag handler class for the sas:NavigationBarColumnScrollingElement tag, extend com.sas.taglib.servlet.tbeans.navigationbar.NavigationBarColumnScrollingElementTag.