ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: resolvecomputing on September 26, 2018, 04:33:01 pm
-
In the edit screen i have init some checkbox is checked in the pqGrid. Can you tell me the way to do that.
the image below i want to set checked for checkbox is same checkbox in the under grid.
Thanks!
-
I guess that's obvious. Store true values initially in the cells if it's a bool column.
colModel:
[
{
type:'checkbox',
dataType:"bool",
dataIndx: 'chk'
}
]
data:
[
{
chk: true,..
}
]