DHTMLX Docs & Samples Explorer

List of initialization properties

Common initialization options

  • parent - string or object, id of container, where tree will be initialized, mandatory
  • skin - {string} name of skin
  • content - {boolean} sets content to editor document(setContent)

Events

any event can be assigned by using property equal to event name

        editor = new dhtmlXEditor({
		parent:"my_editor_here",
		onFocusChanged:function(){
			alert("Something changed...");	
		}
	});