I am using primefaces 3.2 and JSF 2.0
My scenario is I have file date, last date and next date in my form. When user enters file date I need to update file date valu
Use ajax event as dateSelect like
Listener,
public void dateChange(SelectEvent event) {
System.out.println("File Date: " + (Date) event.getObject());
System.out.println("Hello... I am in DateChange");
}
but keep in mind that, you should not use any other component id in process (means only @this is allowed in process) otherwise listener will not work.