function asd() { parent.document.title="select (WebLogic Server JSP Tags Reference)"; }

 Overview   Library    Tag    Help 

 FRAMES   NO FRAMES  All Tags


wl-extension
Tag select


Generates an HTML select tag, which offers a list of items for users to choose. Include one nested <wl-extension:option> tag to represent each choice in the list, or include the <wl-extension:optionsCollection> tag to generate choices from data in a form bean. This tag is valid only when nested in <wl-extension:form>.

Examples

<wl-extension:select property="serverLoggingHttp.RotationType"
           labelId="core.server.serverlogginghttp.rotationtype.label"
           restartNeeded="false"
           inlineHelpId="core.server.serverlogginghttp.rotationtype.label.inlinehelp">
      <wl-extension:option value="bySize">
        <fmt:message key="core.server.serverlogginghttp.rotationtype.bysize"
             bundle="${current_bundle}"/>
      </wl-extension:option>
      <wl-extension:option value="byTime">
        <fmt:message key="core.server.serverlogginghttp.rotationtype.bytime"
             bundle="${current_bundle}"/>
      </wl-extension:option>
      <wl-extension:option value="none">
        <fmt:message key="core.server.serverlogginghttp.rotationtype.none"
             bundle="${current_bundle}"/>
      </wl-extension:option>
    </wl-extension:select>


Tag Information
Tag Class com.bea.console.taglib.form.SelectTag
TagExtraInfo Class None
Body Content JSP
Display Name None

Attributes
Name of Required Request-time Type Description
labelid true true java.lang.String The key for a property in a message bundle that defines the localized text to display as the control name. The "bundle" attribute in the <wl-extension:form> tag determines in which bundle the JSP tag searches for this property.
name false true java.lang.String ??Is this ignored for an optionsCollection? The name of the Struts form bean that contains properties for this tag. Use the "property" attribute to specify which property this tag renders.
property false true java.lang.String The property of the form bean that defines a list of values for this tag.
inlineHelpId false false java.lang.String The key for a property in a message bundle that defines the localized text to display as the description of this control. The "bundle" attribute in the <wl-extension:form> tag determines in which bundle the JSP tag searches for this property.
readOnly false true boolean Whether to display this control as read only regardless of whether the user has started an edit session or is authorized to change the value.
restartNeeded false false boolean Whether a change to this attribute is dynamic or non-dynamic. If set to true, an icon indicating a restart will be needed is rendered.
depends false false java.lang.String Specifies the the name of an HTML control on the page that this control is dependant on to become enabled on the page.
required false false boolean Whether this control must be supplied a value.
singlechange false false boolean Whether a user must start a WebLogic Server edit session before being able to edit the value that this control contains. Specify "true" only if this control modifies an attribute in a WebLogic Server MBean. The default value is "true."

Variables No Variables Defined.

 Overview   Library    Tag    Help 

 FRAMES   NO FRAMES  All Tags


Output Generated by Tag Library Documentation Generator.