How can I dynamically change managed bean of "value" attribute? For example, I have h:inputText and, depending on typed-in text, managed bean must be #{studentBean.login} or #{lecturerBean.login}. In a simplified form:

<h:inputText id="loginField" value="#{'nameofbean'.login}" />

I tried to embed another el-expression instead of 'nameofbean':

value="#{{userBean.specifyLogin()}.login}"

but it doesn't worked out.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Polymorphism should rather be done in the model, not in the view.

E.g.

<h:inputText value="#{person.login}" />

with

public interface Person {
    public void login();
}

and

public class Student implements Person {
    public void login() {
        // ...
    }
}

and

public class Lecturer implements Person {
    public void login() {
        // ...
    }
}

and finally in the managed bean

private Person person;

public String login() {
    if (isStudent) person = new Student(); // Rather use factory.
    // ...
    if (isLecturer) person = new Lecturer(); // Rather use factory.
    // ...
    person.login();
    // ...
    return "home";
}

Otherwise you have to change the view everytime when you add/remove a different type of Person. This is not right.

link|improve this answer
OK, but Student and Lecturer must have also specific field. I mean they have to implement not just Person interface but Person<Toloko>, for example. I specified proper getter and setter in public interface Person<T> { public T getToloko() ..., but in managed bean, when I want to get access to it - #{registration.person.toloko}, they see toloko as example of some T class (???) and not a Toloko. How can I solve it? – akapelko May 21 '11 at 12:10
added: Person class has overriden getters and setters. – akapelko May 21 '11 at 12:19
feedback

Another way:

<h:inputText id="loginField1" value="#{bean1.login}" rendered="someCondition1"/>
<h:inputText id="loginField2" value="#{bean2.login}" rendered="someCondition2"/>
link|improve this answer
Thanks! I've totally forgotten about rendered attribute. – akapelko May 18 '11 at 8:50
feedback

Your Answer

 
or
required, but never shown

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