Attributes |
Name | Required | Request-time | Type | Description |
binding | false | false | java.lang.String | The attribute takes a value-binding expression for a component property of a backing bean |
id | false | false | java.lang.String | Every component may have a unique id that is automatically created if omitted |
name | false | false | java.lang.String | The name of the function that will be generated to execute the query. The name attribute is required if timing attribute equals to "onJScall" |
query | true | false | java.lang.String | The query string that will be executed for given selector. |
rendered | false | false | java.lang.String | If "false", this component is not rendered |
selector | false | false | java.lang.String | Selector for query. The "selector" attribute uses defined by w3c consortium syntax for CSS rule selector with some jQuery extensions. |
timing | false | false | java.lang.String | When to peform the query. Two possible values are "immediate","onload" and "onJScall". "immediate" performs the query right away. "onload" adds the task to the time when document is loaded (the DOM tree is created). "onJScall" allows to invoke the query by Javascipt function name defined with "name" attribute. The default value is "immediate". |