Stringsetting.check.chkStyle

Overview[ depends on jquery.ztree.excheck js ]

Use the checkbox or radio. It is valid when [setting.check.enable = true]

Default: "checkbox"

String Format

When chkStyle = "checkbox", zTree show checkbox, and 'setting.check.chkboxType' attribute is valid.
When chkStyle = "radio", zTree show radio, and 'setting.check.radioType' attribute is valid.

Please note that letter case, do not change.

checkbox States Descriptions

not checked; If node is parent, so its child nodes have been not checked. when mouse over:

not checked; (only parent node) some of its child nodes have been checked. when mouse over:

be checked; If node is parent, so its all child nodes have been checked. when mouse over:

be checked; (only parent node) some of its child nodes or all have been not checked. when mouse over:

radio States Descriptions

not checked; If node is parent, so its child have been not checked. when mouse over:

not checked; (only parent node) some of its child have been checked. when mouse over:

be checked; If node is parent, so its child have been not checked. when mouse over:

be checked; (only parent node) some of its child have been checked. when mouse over:

Examples of setting

1. use radio

var setting = {
	check: {
		enable: true,
		chkStyle: "radio"
	}
};
......