When drag node cause the parent node is automatically expanded, set whether to allow to trigger the 'onExpand' callback. It is valid when [setting.edit.enable = true]
Default: false
true means: trigger the 'onExpand' callback.
false means: don't trigger the 'onExpand' callback.
var setting = {
edit: {
enable: true,
drag: {
autoExpandTrigger: true
}
}
};
......