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

I have a method that takes x and y and add them together and return the result. Now first InputText will take x and second takes Y. But I want to pass both X and Y to the same method so that public int addNumbers(int x, int y) will be called and return it. Any idea how? am very very new to JSF Thanks,

share|improve this question

1 Answer

Have a managed form

public DataFormBean{
   String number1;
   String number2;
   //setter getter + constructors
}

public ActionBean{
    DataFormBean dataBean;
    //setter + getter

    public String add(){
       // convert your number here to int and pass it to the method and set the result back to the baen
    }
}

You need to declare managed bean and do the injection

<h:form>
  <h:inputText value="#{dataBean.number1}" >
  <h:inputText value="#{dataBean.number2}" >
<h:commandButton action="#{actionbean.add}" >
</h:form>

See

share|improve this answer
hmmm i have the managed bean where the method I mentioned is defined. But I was wondering how u pass parameters to the method from xhtml page – sys_debug Nov 5 '11 at 12:18
You just need to bind it with page. (code coming up) – Jigar Joshi Nov 5 '11 at 12:19
yeh because usually I could just define an inputText and do #{beanName.method} but as for the 2 parameters I can't figure out – sys_debug Nov 5 '11 at 12:21
You need bind inputTexts to number1 and number2 as says Jigar Joshi, and in add action you just do something like getNumber1() + getNumber2(). You need add getter and setters in your bean – Sergey Gazaryan Nov 5 '11 at 12:30
@sys_debug you don't pass parameters directly to the method signature. Component values are bounded to field values and updated during "Update model values" phase of JSF2 Lifecycle. And then in backing bean you can use them in your action method. – JMelnik Nov 5 '11 at 13:01
show 1 more comment

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.