Hi @Sam,
How to implement the checkbox for table row selection in alpha platform?
Hi @Sam,
How to implement the checkbox for table row selection in alpha platform?
@Sam @Simphiwe @Shamnad_KS @shas please help
Can you refer to the link below, it should assist you.
How to Display Members List with Checkbox and Action Column in Alpha - Community - Neutrinos
Okay, let me check. Thanks
I checked, but there is an annotation in the code for designing custom code. How can we put this annotations and all in the custom code?
Hi @GeethaNagarajan,
Let me check it out, will get back to you.
Okay Thankyou. Please let me know, once will get an idea. Thanks again.
Hi @GeethaNagarajan,
I Have checked it out and I didn’t see any annotations from my side.
You just need to toggle the Enable Checkbox and bind your table data.
Add an On checkbox select trigger and a custom code then console log params, you will get an object like the one below when the On Checkbox Select event is triggered.
{
“eventDetail”: {
“selectedItems”: [
{
“name”: “SIM”,
“surname”: “NENE”,
“isCheckboxSelected”: true
}
],
“isAnyCheckboxSelected”: true,
“isAllVisibleCheckboxSelected”: false,
“isAllCheckboxSelected”: false
},
“context”: {},
“triggerEvent”: {
“selectedItems”: [
{
“name”: “SIM”,
“surname”: “NENE”,
“isCheckboxSelected”: true
}
],
“isAnyCheckboxSelected”: true,
“isAllVisibleCheckboxSelected”: false,
“isAllCheckboxSelected”: false
}
}
Not sure if that answers your questions if it doesn’t, please elaborate.
@GeethaNagarajan is this sorted ?