Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

h:selectBooleanCheckbox and valueChangeListener problem

843844Sep 2 2009 — edited Sep 15 2009
Hello everyone!

I'm having trouble triggering method when user changes checkbox value.

In JSF file I have:
<h:selectBooleanCheckbox id="checkBoxPrijava"
styleClass="selectBooleanCheckbox"
value="#{prijava.selected}"
onchange="this.form.submit();"
immediate="true"
valueChangeListener="#{pc_XmlUpload.onCheckBoxPrijavaChanged}"  />
And in backing bean I have:
public void onCheckBoxPrijavaChanged(ValueChangeEvent event){
		System.out.println("Test" + event.getOldValue());
		facesContext.renderResponse();
	}
The problem is that onCheckBoxPrijavaChanged isn't triggered at all.

I've look at colleagues code and they are doing it same way.
Where can I start solving this problem?

Thanks for answers!

Ziga

Edited by: zigomir on Sep 2, 2009 6:11 AM

Comments

Processing
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Oct 13 2009
Added on Sep 2 2009
5 comments
8,424 views