Hello!
I'm trying to make a checkbox column but checkbox header doesn't show and when I check a checkbox. browser console throws me next error:
TypeError: this.$inp is undefined
My colModel is:
{ title: "", type:'checkBoxSelection', sortable: false, align: 'center', dataType: "bool", cls: 'ui-state-default', dataIndx: "state" },
{ title: "Concepto", width: 300, dataType: "string", dataIndx: "Concept", editable: false, sortable: false },
{ title: "Monto", width: 100, dataType: "float", dataIndx: "ConceptPriceTax", editable: false, sortable: false },
{ title: "Fechas de Pago", width: 250, align: "center", colModel:[
{ title: "Inicial", width: 100, dataType: "date", dataIndx: "InitialPaymentDate", editable: false },
{ title: "Final", width: 100, dataType: "date", dataIndx: "FinalPaymentDate", editable: false },
]},
My selectionModel is:
selectionModel: { type: "none", cbHeader: true, cbAll: true },
I don't use filtermodel but I use rows grouped.
Someone could help me please?