Booleansetting.view.nameIsHTML

Overview[ depends on jquery.ztree.core js ]

Set to use HTML in 'name' attribute.

If allow HTML, please do check to avoid security issues, e.g. JavaScript Injection...

Default: false

Boolean Format

true means: 'name' attribute can be HTML.

false means: 'name' attribute is only TEXT.

Examples of setting

1. Set to allow HTML

var setting = {
	view: {
		nameIsHTML: true
	}
};
var node = {"name":"<font color='red'>test</font>"};
......