When the parent node's 'nocheck' attribute is true, set the child nodes automatically inherit the 'nocheck' attribute. It is valid when [setting.check.enable = true]
1. Only be used to initialize the nodes, easy batch operations. Please use the 'updateNode' method modify existing node.
Default: false
true means: When add new child nodes, if parent node's 'nocheck' attribute is true, the child nodes automatically inherit the 'nocheck' attribute.
false means: When add new child nodes, the child nodes don't inherit the 'nocheck' attribute from parent node.
var setting = {
check: {
enable: true,
nocheckInherit: true
}
};
......