• 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
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

help needed on selectBooleanCheckbox

 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi
am new to JSF and I think its a simple problem.
I have 3 check boxes like:
A B C

What I want is when ever I select any of the check boxes and click the submit button I want to get the value of this check box.
my jsp code is simple:

<TR>
<TH><h:selectBooleanCheckbox value="searchBeanQuery.iLinkSelected" immediate="true"/>
<h utputText value="ILINK"/></TH>
<TH><h:selectBooleanCheckbox value="searchBeanQuery.hipHopSelected" immediate="true"/>
<h utputText value="HIPHOP"/></TH>
<TH><h:selectBooleanCheckbox value="searchBeanQuery.falconSelected" immediate="true"/>
<h utputText value="FALCON"/></TH>
</TR>

let me know. wiating for responses
 
Ranch Hand
Posts: 15304
6
Mac OS X IntelliJ IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, your backing bean should have boolean members for each checkbox in your JSF page with appropriate getters and setters for the value. What exactly don't you understand how to do? What have you tried? Where is your managed bean code?
 
p kiran
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
here is my bean code

public boolean getFalconSelected() {

return falconSelected;
}

public void setFalconSelected(boolean falconSelected) {
System.out.println("FALCON Checked");
this.falconSelected = falconSelected;
}

public boolean getHipHopSelected() {
return hipHopSelected;
}

public void setHipHopSelected(boolean hipHopSelected) {
System.out.println("HIPHOP Checked");
this.hipHopSelected = hipHopSelected;
}

public boolean getILinkSelected() {
return iLinkSelected;
}

public void setILinkSelected(boolean linkSelected) {
System.out.println("ILINK Checked");
iLinkSelected = linkSelected;
}
 
Gregg Bolinger
Ranch Hand
Posts: 15304
6
Mac OS X IntelliJ IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, that's "part" of your backing bean. Care to show the whole thing? And can you use Code Tags this time?

Be more specific on what you want to do. Yes, you want to get the value of the selected checkbox, so when your button is clicked determine which one is set to true.
 
p kiran
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I got it the problem was simple. I specified the
value ="searchBeanQuery.ilSelected" instead of
value="#{searchBeanQuery.ilSelected}"

thanks
 
Gregg Bolinger
Ranch Hand
Posts: 15304
6
Mac OS X IntelliJ IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You might want to read this a little bit. Obviously it was something easy but the way you worded your question wasn't "I am getting an error..." or "when I try this it doesn work...". You worded it as "how do I..." which would imply to me that you just didn't know how. Not that you were having a problem with what you were doing specifically. It helps everyone to asked the right kinds of questions. Glad you got it figured out.
 
p kiran
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
yeah sorry, I wen tthru the tutorial then I found the solution.
I dint know anything about that thats the reason I asked the question i that way. anyway sorry for misunderstanding.
 
Eat that pie! EAT IT! Now read this tiny ad. READ IT!
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic