The listener method never gets executed no matter what I do with the sheet.
This is a funtioning sheet and quarantine backing bean, that I can refresh data, sort columns, select columns, etc.
I've been through the demo application and the api and it looks like I'm doing this right.
 
In the sheet tag I have:
 
stateChangeListener="#{quarantine.updateCounts}"
 
In the quarantine backing bean I have:
 
public void updateCounts(SheetStateChangeEvent sheetStateChangeEvent) {
    System.out.println("updateCounts");
}
 
 
Thanks.

Reply via email to