I want to call a method with parameter that return a string.
public String MyMethod(Integer param) {
String xx=......;
return xx;
}
And I want to display this result in <p:inputText>. How can I do this? I'm using primefaces.
|
I want to call a method with parameter that return a string.
And I want to display this result in |
||||
|
|
|
Let's say you have the following:
Then you can access this property in your
Alright? I'd still recommend you to read a book or something, since this is very basic stuff. |
|||
|
|
|
Thank you for your answers, my classBean contain a reference of anotherClass like this bean user {.... Profils idProfil} So when I've tried to call beanUser.selectedProfil.nameProfil in p:inputText, it works fine. Thank's |
|||
|
|