Parent Project
Foundation

Tag reference sheet

Tag library reference for the following tag libraries:

Tobago Sandbox

<b>Tobago Framework Sandbox Tag Library - (C) Copyright 2002-2008 The Apache Software Foundation</b> <b>Warning: The sandbox tag library contains unstable components. Everything is subject to change without prior notice.</b>

This is version 1.2.

Required attributes are marked with a *

<tcs:numberSlider>

<p><b>UIComponentClass: </b>org.apache.myfaces.tobago.component.UINumberSlider</p><p><b>RendererType: </b>NumberSlider</p>

Can contain: JSP

Attributes

Name Description Type
binding The value binding expression linking this component to a property in a backing bean.<br />Type: <code>javax.faces.component.UIComponent</code> String
disabled Flag indicating that this element is disabled.<br />Type: <code>boolean</code><br />Default: <code>false</code> String
id The component identifier for this component. This value must be unique within the closest parent component that is a naming container.<br />Type: <code>java.lang.String</code> String
markup Indicate markup of this component. The allowed markups can be defined or overridden in the theme. The value 'none' should not be used any longer. Just leave the attribute empty, or use a NULL pointer.<br />Type: <code>org.apache.myfaces.tobago.context.Markup</code> String
max The maximum integer that can be entered and which represents the rigth border of the slider.<br />Type: <code>java.lang.Integer</code><br />Default: <code>100</code> String
min The minimum integer that can be entered and which represents the left border of the slider.<br />Type: <code>java.lang.Integer</code><br />Default: <code>0</code> String
readonly Flag indicating that this component will prohibit changes by the user.<br />Type: <code>boolean</code> String
rendered Flag indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit.<br />Type: <code>boolean</code><br />Default: <code>true</code> String
value The current value of this component.<br />Type: <code>java.lang.Object</code> String
valueChangeListener MethodBinding representing a value change listener method that will be notified when a new value has been set for this input component. The expression must evaluate to a public method that takes a ValueChangeEvent parameter, with a return type of void. String