Hi,
I saw at a different topic someone asking about the option to check only one box in a column and the answer was to use the radio:true option, but how do we build the column?
As a normal Checkbox type? I've done like this but i'm still able to check multiple rows
{
title: "Total",
dataIndx: "sumRow",
type: 'checkbox',
cb: {
radio: true,
check: "YES", //check the checkbox when cell value is "YES".
uncheck: "NO" //uncheck when "NO".
},
}
Thanks!