Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

First question but have been a fan of the site for a while.

I have a simple setup where I update the contents of a tag from a onchange on a .

Now to the problem:

When the checkbox is clicked no data is sent to the server in IE9 - works in all other major browsers.

Has anyone had this problem?

Code in xhtml:

<h:selectManyCheckbox id="palletSerials" layout="pageDirection" 
   value="#{OnlineBeanHandler.palletSerials}">
    <f:selectItems value="#{OnlineBeanHandler.allPalletSerials}"></f:selectItems>
    <f:ajax></f:ajax>
</h:selectManyCheckbox>

On the serverside an empty list / array whatever is recieved when the checkboxes are clicked.

If I do an full form submit the list is sent as expected.

As stated - works in Firefox and Chrome (newest versions).

As a curiousity I noticed that the inner DOM is not refreshed by JSF in IE9, although the page does change appearence. It is as though IE9 does not "see" the partial update of the page.

Any input as to what I can do to have the page submit the values of the checkboxes in a partial request would be greatly appreciated.

Karl

share|improve this question
1  
any chance you got nested h:form (h:form inside h:form) – Daniel Jan 15 at 13:55
Which JSF impl/version? An online example as shown here works just fine in IE9. Edit: indeed, nested forms as hinted by Daniel can cause strange browser-specific behaviour of not properly processing form submits. – BalusC Jan 15 at 13:56

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.