Stringsetting.check.radioType

Overview[ depends on jquery.ztree.excheck js ]

The group about radio. It is valid when [setting.check.enable = true & setting.check.chkStyle = "radio"]

Default: "level"

String Format

When radioType = "level", will be grouped with same level nodes which have the same parent node.
When radioType = "all", will be grouped with all nodes.

Please note that letter case, do not change.

Examples of setting

1. Set the group about radio is all nodes.

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