Booleansetting.edit.editNameSelectAll

Overview[ depends on jquery.ztree.exedit js ]

When edit node's name, the text in input is selected or unselected. It is valid when [setting.edit.enable = true]

Default: false

Boolean Format

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

Examples of setting

1. When edit node's name, the text in input is selected.

var setting = {
	edit: {
		enable: true,
		editNameSelectAll: true
	}
};
......