Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
280
igniteui-angular checkbox editor grid column
posted

hi, i've managed to create a grid with read-only checkboxes for my boolean column, albeit unable to make them editable. is that even possible? here's an example of the grid settings:

this.gridOptions = {
dataSource: this.excludes,
primaryKey: "storeId",
height: "400px",
autoGenerateColumns: false,
autoCommit: true,
enableHoverStyles: false,
renderCheckboxes: true,
columns:[

{ headerText: "All", key: "all", dataType: "bool", width: "60px", editorType: "checkbox", readOnly: false }
]

,
features: [
{
name: "Filtering",
allowFiltering: true,
caseSensitive: false
}, {
name: 'Sorting',
type: "local",
}
]
};