BooleantreeNode.chkDisabled

Overview[ depends on jquery.ztree.excheck js ]

1. Set node's checkbox / radio to disabled. It is valid when [setting.check.enable = true]

2. zTree support identification string 'true' & 'false'.

3. Please don't change this attribute of the nodes which have been created. If you want to disable or undisable the nodes, please use 'setChkDisabled()' methods.

4. If you set the parent node's checkbox / radio to disabled, its child nodes will be disabled too.

Default: false

Boolean Format

true means: this node's checkbox / radio is disabled.

false means: this node's checkbox / radio is able.

Examples of treeNode

1. disable some node's checkbox / radio

var nodes = [
	{ "id":1, "name":"test1", "checked":true, "chkDisabled":true},
	{ "id":2, "name":"test2", "chkDisabled":true},
	{ "id":3, "name":"test3"}
]