jsf icefaces basic problem with displaying value
- by michal
Hi All, I don't know what I'm doing wrong.I'm using icefaces and have basic controller:
public class TestingController {
private String name;
public String submit() {
setName("newName");
return null;
}
public void setName(String name) { this.name = name;}
public String getName() { return name; }
}
--------and view:
<ice:inputText id="inp"…