When edit node's name, the text in input is selected or unselected. It is valid when [setting.edit.enable = true]
Default: false
true means: when show the input, the text in input is selected
false means: when show the input, the text in input is not selected
var setting = {
edit: {
enable: true,
editNameSelectAll: true
}
};
......