Attributes |
Name | Required | Binding Type | EL | Default | Description |
binding | false | teamdev.jsf.component.dropdown.DropDownField | only | null | A value-binding expression that associates the DropDownField with a backing bean property. |
buttonAlignment | false | teamdev.jsf.component.dropdown.HorizontalAlignment | true | "right" | Defines whether the button that opens the drop-down list is positioned to the right or to the left of the text field. Available values are: "left" "right"
|
buttonClass | false | java.lang.String | true | null | A CSS class name for for the drop-down button. |
buttonImageUrl | false | java.lang.String | true | null | URL to the image file for the drop-down button. |
buttonStyle | false | java.lang.String | true | null | A style for the drop-down button. |
converter | false | java.lang.String | true | null | A converter for the DrowDownField's value. Should be specified as a value-binding expression or converter identifier. |
fieldClass | false | java.lang.String | true | null | A CSS class name for the text field. |
fieldStyle | false | java.lang.String | true | null | A style for the text field. |
id | false | java.lang.String | false | null | The component identifier. |
immediate | false | boolean | true | false | A flag that indicates whether or not valueChangeListener should be executed immediately (during the Apply Request Values phase of the request processing lifecycle instead of Process Validations phase) and the component's input should be converted and validated immediately (during the Apply Request Values phase of the request processing lifecycle instead of the Process Validations phase). |
listAlignment | false | teamdev.jsf.component.dropdown.HorizontalAlignment | true | "left" | Defines how items in the drop-down list are aligned. Available values are: "left" "right"
|
listClass | false | java.lang.String | true | null | A CSS class name for the drop-down list. |
listItemClass | false | java.lang.String | true | null | A CSS class name for a list item. |
listItemStyle | false | java.lang.String | true | null | A style for a list item. |
listStyle | false | java.lang.String | true | null | A style for the drop-down list. |
onblur | false | java.lang.String | true | null | JavaScript code that should be executed when the DropDownField loses focus. |
onchange | false | java.lang.String | true | null | JavaScript code that should be executed on the client when the DropDownField's value has changed. |
onclick | false | java.lang.String | true | null | JavaScript code that should be executed on the client when the user clicks the left mouse button over the DropDownField. |
oncloseup | false | java.lang.String | true | null | JavaScript code that should be executed on the client when the drop-down list has closed. |
ondblclick | false | java.lang.String | true | null | JavaScript code that should be executed on the client when the user double-clicks the left mouse button over the DropDownField. |
ondropdown | false | java.lang.String | true | null | JavaScript code that should be executed on the client when the drop-down list has opened. |
onfocus | false | java.lang.String | true | null | JavaScript code that should be executed when the DropDownField receives focus. |
onkeydown | false | java.lang.String | none | none | JavaScript code that should be executed when the user presses a key over the DropDownField. |
onkeypress | false | java.lang.String | true | null | JavaScript code that should be executed on the client when the user presses and releases a key over the DropDownField. |
onkeyup | false | java.lang.String | true | null | JavaScript code that should be executed when the user releases a key over the DropDownField. |
onmousedown | false | java.lang.String | true | null | JavaScript code that should be executed when the user clicks over the DropDownField with either mouse button. |
onmousemove | false | java.lang.String | true | null | JavaScript code that should be executed when the user moves the mouse pointer over the DropDownField. |
onmouseout | false | java.lang.String | true | null | JavaScript code that should be executed when the user moves the mouse pointer away from the DropDownField. |
onmouseover | false | java.lang.String | true | null | JavaScript code that should be executed when the user moves the mouse pointer onto the DropDownField. |
onmouseup | false | java.lang.String | true | null | JavaScript code that should be executed when the user releases the mouse button over the DropDownField. |
pressedButtonClass | false | java.lang.String | true | null | A CSS class name for the drop-down button in the pressed state. |
pressedButtonStyle | false | java.lang.String | true | null | A style for the drop-down button in the pressed state. |
rendered | false | boolean | true | false | A flag that indicates whether or not the component is visible. |
required | false | boolean | true | false | A flag that indicates whether or not the DropDownField requires a value. |
rolloverButtonClass | false | java.lang.String | true | null | A CSS class name for the drop-down button in the rollover state. |
rolloverButtonStyle | false | java.lang.String | true | null | A style for the drop-down button in the rollover state. |
rolloverClass | false | java.lang.String | true | null | A CSS class name for the entire DropDownField component in the rollover state. |
rolloverFieldClass | false | java.lang.String | true | null | A CSS class name for the text field in the rollover state. |
rolloverFieldStyle | false | java.lang.String | true | null | A style for the text field in the rollover state. |
rolloverListClass | false | java.lang.String | true | null | A CSS class name for the drop-down list in the rollover state. |
rolloverListItemClass | false | java.lang.String | true | null | A CSS class name for a list item in the rollover state. |
rolloverListItemStyle | false | java.lang.String | true | null | A style for a list item in the rollover state. |
rolloverListStyle | false | java.lang.String | true | null | A style for the drop-down list in the rollover state. |
rolloverStyle | false | java.lang.String | true | null | A style for the entire DropDownField component in the rollover state. |
style | false | java.lang.String | true | null | A style for the entire DropDownField component. |
styleClass | false | java.lang.String | true | null | A CSS class name for the entire DropDownField component. |
timeout | false | int | true | -1 | A time period after which the drop-down list is closed automatically. The value "-1" means that the list will not close automatically. |
validator | false | javax.faces.el.MethodBinding | only | null | A MethodBinding that should point to the method in the backing bean that is called to validate the DropDownField's value. |
value | false | java.lang.String | true | null | The value that is displayed in the text field. |
valueChangeListener | false | javax.faces.el.MethodBinding | only | null | A MethodBinding that should point to the method that accepts a ValueChangeEvent. If the value of the DropDownField changes, this method is executed. |