<ej-grid e-data-source.bind="customerDtos"
e-columns.bind="columns"
e-allow-paging=true
e-page-settings.bind="pageSettings"
e-toolbar-settings.bind="toolbarSettings"
e-allow-sorting=true>
</ej-grid>
this.columns = [
{ field: "name", headerText: "Name", textAlign: "center", priority:1 }, // priority = what should be taken precedence to displayed in responsive
{ field: "code", headerText: "Code", textAlign: "center" },
{ field: "attention", headerText: "Attention", textAlign: "center" },
{ template: "address1 " + "address2 " + "city " + "state " + "zip", headerText: "Address", textAlign: "center" },
{ field: "classValue", headerText: "Class", textAlign: "center" },
{ field: "notes", headerText: "Notes", textAlign: "center" },
{ field:"status", headerText: "Active", textAlign: "center", }
];
"status" is a boolean type and as of now it is not displaying any value.
When I set type="boolean" a checkbox is displayed but it never gets checked.
Thank you.