Unchecked event?
Closed this issue · 1 comments
csulit commented
How can we determine if a checkbox or radio button is unchecked?
WrathChaos commented
Hello @csulit
you can use onChange
prop to check which one are checked and which ones are not
onChange={(selectedItem: ICheckboxButton) => {
console.log("SelectedItem: ", JSON.stringify(selectedItem));
}}