scheduler.config.lightbox.sections:

hi
i am using
scheduler.form_blocks[“my_editor”]={
render:function(sns){
return “

Text 
Details 
“;
},
set_value:function(node,value,ev){
node.childNodes[1].value=value||””;
node.childNodes[4].value=ev.details||"";
},
get_value:function(node,ev){
ev.location = node.childNodes[4].value;
return node.childNodes[1].value;
},
focus:function(node){
var a=node.childNodes[1]; a.select(); a.focus();
}
}
scheduler.config.lightbox.sections=[
{ name:“description”, height:200, map_to:“text”, type:“my_editor” , focus:true},
{ name:“time”, height:72, type:“time”, map_to:“auto”}
]

is there any other types to load dhtmlxtree instead of type=‘text’

In render method you can place the code which will ouput just some div with ID and fixed width and height

in set_value you can place the code , which will init tree in previously created DIV

As result you will have a dhtmlxTree in the scheduler’s lightbox