I need column with checkboxes as column content. I found this code.
My template:
{
field :
"Select"
,
template: (dataItem) =>
{
return
`<input type=
"checkbox"
/>`;
}
},
But how can I track when input checked is changed? Is it possible to return JQuery instead of string? I need to react immediately after checked is changed. Example in code I found use another event to check checkboxes checked property.