Is it possible to do:
jsf code (pseudo):
...
<f:param name="arg" value="document.getElementById('naming').text()">
<h:inputText id="naming"></h:inputText>
...
I mean approach,when <f:param> is set with JS.
Is it bad practice?
Thanks for help.
|
Is it possible to do: jsf code (pseudo):
I mean approach,when Is it bad practice? Thanks for help. |
||||
|
|
|
You need to use a4j's Additionally, you need an attribute on your bean that will receive the param value. Example:
Here Notice the
|
|||
|
|
|
You can use ajax |
|||
|
|
|
No you can't. You could change an attribute of a link for example and get this attribute in your action method ont he server side. Alternatively you could use an hidden input field linked to an attribute in your bean. |
|||
|
|