Hello everyone:
I have a React component to create dynamic checkboxes. Basically:
const Elem = ({text}) {
function onChangeHandler (x) {
console.log(x);
}
let fieldZone = <JqxCheckBox value={text} onChange={onChangeHandler} />
return fieldZone;
}
The fact is that the checkboxes are rendered, but I’m unable to capture the change event. I’ve tried onChange, onCheck, onUncheck, everything unsuccessfully, and I was unable to find how to do this in the documentation. Is there a way to solve this? If so, how can I achieve this?