I'm having trouble with a JSF selectManyCheckbox and A4J support. The purpose is to run some action when a checkbox is selected. This works perfectly in Firefox. Yet, when testing in any IE (ie6 / ie7 / ie8), found out that the action was being called but the selected value was put to null. Just to test it, I placed a JSF commandButton to submit the form and to check the value that was selected and it was correct. So the problem is really in the ajax action (without submiting the form). Here is my code:

		<h:selectManyCheckbox id="supportCategoryCardFilter" value="#{cardListProvider.categoriesHolder.selectedCategories}"  layout="pageDirection" required="false" >
			<f:selectItems value="#{cardListProvider.categoriesList}" />
			<a:support ajaxSingle="true" status="statusSearchCard" id="supportCategoryCardFilter2" event="onclick" reRender="cardsHolder, renderCardsCategoriesPanel" 
				 action="#{cardListProvider.findCards(cardListProvider.categoriesHolder.selectedCategories)}"  >
			</a:support>
		</h:selectManyCheckbox>

where cardListProvider.categoriesList is a List<SelectItem> and cardListProvider.categoriesHolder.selectedCategories is a List<String>

Has anyone had this problem? Can anyone help me with this? Thank you

link|improve this question

67% accept rate
After some more debbuging I noticed that selectManyCheckbox value (value="#{cardListProvider.categoriesHolder.selectedCategories}") is being set when I click a checkbox in Firefox but not in IE! Only submitting the form! Can't understand this... – GuilhermeA Nov 17 '09 at 10:46
2  
Check that you don't have nested forms. It can cause this behaviour. – Damo Nov 17 '09 at 20:09
Man, it was it... we made a huge redesign and in the middle a colleague of mine included the form inside a form...We are including lots of .xhtml in others .xhtml that was hard to notice! thank you very much! I can't understand why it worked in firefox! Thank you – GuilhermeA Nov 18 '09 at 8:31
feedback

2 Answers

You should use either JBoss EL, or declare a JSF function. If you are using facelets, this is as easy as:

  • declare a public static method in a class of your preference
  • in a my.taglib.xml (facelets decriptor) add:
  • <function>
        <function-name>concat</function-name>
        <function-class>com.mycompany.myproject.ServiceFunctions</function-class>
        <function-signature>java.lang.String concat(java.lang.String, java.lang.String)   </function-signature>
    </function>
    

  • Also, try setting the event to "onselect" (or "onchange") rather than "onclick"
  • try seting immediate="true"
  • try removing the method parameter - you don't need it, since you can access it via the property of the managed bean - i.e. action="#{cardListProvider.findCards}" and then in findCards() get this.cardListProvider.categoriesHolder.selectedCategories
  • try upgrading to richfaces 3.3.2.SR1
  • link|improve this answer
    I'm using JBoss EL, my framework is Seam... – GuilhermeA Nov 17 '09 at 10:26
    Then try "onchange" or better "onselect" rather than "onclick" – Bozho Nov 17 '09 at 11:00
    Another event isn't going to help. Besides, in a checkbox/radiobutton you really want onclick instead of onchange. – BalusC Nov 17 '09 at 11:16
    you're right BalusC, changing the event did not help me... thank you anyway Bozho! Any other idea? – GuilhermeA Nov 17 '09 at 11:27
    Check firefox error console. And see if there is a JS error in IE. (P.S. I don't agree 'onclick' is preferable with radios/checkboxes) – Bozho Nov 17 '09 at 11:33
    show 15 more comments
    feedback

    I am surprised this even works in Firefox. Action methods don't support parameters. From the Richfaces docs:

    signature must match java.lang.Object action()

    http://livedemo.exadel.com/richfaces-demo/richfaces/support.jsf?tab=info&cid=1615759

    link|improve this answer
    It however does support it if you're using JBoss EL instead of standard EL. – BalusC Nov 16 '09 at 23:15
    yeah, I'm using JBoss EL... can't figure this one out :/ – GuilhermeA Nov 17 '09 at 10:17
    feedback

    Your Answer

     
    or
    required, but never shown

    Not the answer you're looking for? Browse other questions tagged or ask your own question.