Our state of the art Gantt chart


Post by jhughesoneplan »

When adding a check column, i need to be able to make it read only. If you set editor to null you can still check the field. It also doesnt trigger a beforeCellEditStart event to prevent it. How can I make this field not editable?


Post by mats »

Set this on your column config:

            widgets : [{
                type          : 'checkbox',
                readOnly      : true,
                valueProperty : 'checked'
            }]

Post Reply