checkbox not triggering process value change event
Hi,
I have a checkbox group that is populated from a database field. I have added an event handler for the checkbox group so that I can change component values whenever a checkbox is selected/deselected.
However the problem is that when running my app and ticking/unticking the checkboxes the event handler is not being processed. Is there something I don't know about or is this a bug in creator?
This is the code for my event handler...
publicvoid extras_processValueChange(ValueChangeEvent event){
// TODO: Replace with your code
Object oVar1 = extras.getValue();
//boolean bVar1 = extras.i
if (extras.getSelected() !=null){
String[] extraSelected = (String[]) extras.getSelected();
for (int i=0; i < extraSelected.length; i++){
oVar1 = extraSelected[i];
}
}
}
At this stage I am just testing so I have set a breakpoint at the line Object oVar1 = extras.getValue();
. My checkbox group is named "extras". Why would this not run when changing checkbox values...?
Thanks.

