如何在dhtmlx gantt的选择框中使用onchange功能。请在示例中显示
答案 0 :(得分:0)
来自灯箱的documentation
sections数组中的每个对象都可以具有以下属性:
onchange (功能)指定' onChange'事件处理函数 对于部分的控制(仅适用于选择控件)
示例:
gantt.config.lightbox.sections=[
{name:"description", map_to:"text", type:"textarea", focus:true},
{name:"time", map_to:"auto", type:"duration", onchange:function(){alert('onchange fired!');}
];