How to rendered a <tr:commandButton (trinidad) via ajax
chen young
Ranch Hand
Joined: Sep 09, 2005
Posts: 177
posted
0
Hi All,
In order to rendered a button in a form I am using the onchange=this.form.submit();
Is there a more elegant why?
Meaning instead of using java script maybe I can use ajax ?
I know that there is the autoSubmit option but I didn’t succeed to implement it in my code
Using Ajax is not only elegant way, it's more probably of dealing with performance. (Requesting only want we need, refresh will happen only on particular component). If you use form.submit() the whole form elements will be send with request and re-rendered which is not need as per your requirement.
<f:ajax render="which component id to be rendered" event="on which event" onevent="where to hit" />
No pain, No gain.
OCJP 1.6
chen young
Ranch Hand
Joined: Sep 09, 2005
Posts: 177
posted
0
Thank you
chen young
Ranch Hand
Joined: Sep 09, 2005
Posts: 177
posted
0
Hi,
I have one more questions regarding this issue:
The following example is working ok:
But when I change it to a <h:selectBooleanCheckBox> the rendered option is not working: