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

I'm getting this error java.util.NoSuchElementException when i tried to check one of my checkbox under h:selectManycheckBox when i submit the form.

The many checkbox is dynamically populated from the bean. Here is my code.

<h:form id="eF">
       <h:inputText id="i" value="#{aklat.suggest}">
            <a4j:support event="onkeyup" action="#{aklat.complete}" reRender="m"></a4j:support>
       </h:inputText>

       <s:div>
           <h:selectManyCheckbox value="#{aklat.selectedBooks}" layout="pageDirection" id="m">
                <s:selectItems value="#{aklat.books}" var="_book" itemLabel="#{_book}" itemValue="#{_book}" label="#{_book.bookName}"/>
           </h:selectManyCheckbox>
         <a4j:commandButton value="Add Users" action="#{aklat.fire}"></a4j:commandButton>  
       </s:div>             
</h:form>

The weird part is it renders some data output but when i checked the source code. there are no input type checkbox element.

Is something I am missing.

share|improve this question

1 Answer

up vote 0 down vote accepted

I assume your managed bean is request scope...

because you are making an ajax request, you have to enable "aklat.books" to persist its value longer than request but shorther than session scope.

If you have tomahawk between your app libraries you can use savestate like this (put it after the h:form tag) :

<t:saveState value="#{aklat.books}"/>

if no tomahawk, you can use a4j:keepAlive:

<a4j:keepAlive beanName = "#{aklat.books}"/>
share|improve this answer
Thank you for the reply. Yes absolutely my bean is in request scope only. i will work on your answer. :)) – Ellie Fabrero Oct 18 '11 at 2:01
By the way what do you mean by " shorter than session scope"?and if i declare my bean as session scope would i get the same error? .:) – Ellie Fabrero Oct 18 '11 at 5:26
with session scope the data would be available between requests (unless you delete it intentionally). did it work? – davidmontoyago Oct 18 '11 at 20:07
yes its working now. but the beanName must be literal so i change it to beanName="aklat"...many thanks- cheers :)) – Ellie Fabrero Oct 19 '11 at 0:59

Your Answer

 
discard

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

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