• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

selectManyCheckbox: I can't visualize pre selected checkbox

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi, I've a problem with the tag selectManyCheckbox in a JBoss Seam's context, this is my code:

<a:outputPanel id="ins_groups_panel">
<h:selectManyCheckbox id="groups" value="#{controller.page.groups}" layout="pageDirection" size="1" onclick="selectAllGroups(this);">
<f:selectItems value="#{controller.page.checkboxesGroups}" />

</h:selectManyCheckbox>
</a:outputPanel>

When I click this button, my action fill the list related to the selectManyCheckbox with the the values that must be pre-selected.

<a:commandButton id="editPeriod"
styleClass="rounded {transparent}"
action="#{controller.doEdit}"
reRender="confPeriodForm,panelInsertPeriods,ins_groups_panel"
onclick="if(false) {return false;}"
image="/images/database_edit.png" >
<a:actionparam name="idPeriod" value="#{periods.code}" assignTo="{controller.page.idPeriodToEdit}" />

</a:commandButton>





The selected checkbox setted in the server side application remain unchecked, the field groups is implemented with an ArrayList<String> in the page. If I print that list in the page I can see it correctly valued, so, I think the server side is correct. Someone can help me? (Sorry for my English)


reply
    Bookmark Topic Watch Topic
  • New Topic