Attributes |
Name | Required | Request-time | Type | Description |
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". |
query | true | false | java.lang.String | The query string that will be executed for given selector. |
selector | false | false | java.lang.String | Selector for query. The component id as well as any html element id might be used inside. |
rendered | false | false | java.lang.String | If "false", this component is not rendered |
binding | false | false | java.lang.String | The attribute takes a value-binding expression for a component property of a backing bean |
name | false | false | java.lang.String | The name of the function that will be generated to execute the query. If name is not defined explicitly it will be pre-generated from the id of the component where colon is replaced with underscore and "jq_" prefix is added. The name attribute is required if timing attribute equals to "onJScall" |
id | false | false | java.lang.String | Every component may have a unique id that is automatically created if omitted |