Disable checkbox via xml

Hi,

How to disable the checkbox via xml?
I am trying with the following xml format but its not working
true

Regards,
Raghu

unfortunately such configuration is not supported by xml of the dhtmlxGrid.
you can find here the correct syntax of grid’s xml with available attributes:
dhtmlx.com/docs/products/doc … index.html

You may disable the checkbox using

 mygrid.cells(rowId,colInd).setDisabled(true)

API method.