Is it possible to include two check box columns in the column model?
right now i am able to add only on check box column.
var colM = [
{ title: "InvestmentID", width: 60, dataIndx: "InvestmentID" },
{ title: "Fund Name", width: 320, dataIndx: "FundName" },
{ title: "Company FundCode", width: 120, dataIndx: "CompanyFundCode" },
{ title: "Amount", width: 120, dataIndx: "AUM", dataType: "decimal" },
{ title: "Fund Characteristics", width: 110, dataIndx: "FundCharacteristic", dataType: "string" },
{ title: "IsSuspenseFund", dataIndx: "IsSuspenseFund", width: 50, align: "center", type: 'checkBoxSelection', cls: 'checkboxColumn', resizable: false },
{ title: "QDIA", dataIndx: "IsQDIA", width: 30, align: "center", type: 'checkBoxSelection', cls: 'checkboxColumn', resizable: false }
];
Below is the error i get when using 2 check box columns in one PQGrid
Uncaught TypeError: Cannot set property 'IsSuspenseFund' of undefined .