1. ValueChangeEvent fire all events in page icefaces.org |
3. setEventPhase and valueChangeEvent listener in a SelectOneMenu Component icefaces.orgHello. I'm expiriencing a problem with a SelectOneMenu component that fires a valueChangeEvent: |
4. valueChangeEvent throws java.null.pointer exception icefaces.org |
5. Can not Update ?nput field after ValueChangeEvent icefaces.org |
6. valuechangeevent on drop down list icefaces.org |
8. ValueChangeEvent problem icefaces.org |
9. ValueChangeEvent does not fire icefaces.org |
10. ValueChangeEvent and ValueChangeListener icefaces.org |
11. ValueChangeEvent and ValueChangeListener icefaces.org |
12. ICEFaces 2.0 Beta ValueChangeEvent on SelectOneMenu icefaces.orgHi there, Maybe I have missed the point but I noticed the following behaviour which I cannot explain: Having a simple SelectOneMenu |
13. ValueChangeEvent not fired if valueclass other than String? icefaces.org |
14. Accessing SelectItem object from ValueChangeEvent icefaces.org |
15. selectinputdate valuechangeevent firing automatically..a bug? icefaces.org |
16. selectOneMenu with one item does not fire valueChangeEvent icefaces.orgI have a selectOneMenu with only one item in it. I have a valueChange(ValueChangeEvent e) method implementation in my bean. But it never gets fired since the only item in the menu is already selected. Is there a way to programmatically fire an event here or some other way to call valueChange method ? |
17. Problem with ValueChangeEvent! icefaces.orgpublic class myApp { private String in; private String sel; public String getIn(){ return in ; } public void setIn(String in){ this.in=in ; } public String getSel(){ return sel ; } public void setSel(String sel){ this.sel=sel ; } public void action() { in=sel; } public void change(ValueChangeEvent e) { String selitem = (String) e.getNewValue(); in=selitem; } } |