Any idea anyone? Is it possible that we specify the name of the form input field? How to go about doing that?
|
More generally, all JSF components have an ID.
If you don't provide one, JSF will create an automatic ID, using the format j Some components implement the javax.faces.component.NamingContainer interface, in particular
the real ID of the input (i.e. the ID of the HTML input object) will be myForm:myInput. |
|||
|
|
|
As has been stated, the HTML name and id attributes are generated by the naming containers and based on the application namespace. This prevents collisions when controls are children of repeating controls (like a It is possible to hardcode or build the A bean that can get the
The view:
The mytext control is rendered 10 times, so any code that emits its name must also be a child of the dataTable. |
||||
|
|
It's generated as formId:fieldId So, if you had the following:
The name (and HTML ID) of the search field would be: searchForm:searchField |
|||
|
|
For most pages which contain a view, form and some components, the clientID will be the colon seperated string contained the form-id and component-id. Example:
The input text client ID would be "myForm:myInputText". If you have nested within a subview, then that will be the first thing in the list, for example:
Now the input text client ID would be "mySubview:myForm:myInputText". |
|||
|
|