0

我在调度程序中使用单位视图和周视图。当我unitID(key)单击classname: dhx_scale_bar. 我试过这段代码: CODE: SELECT ALL

function showTitle(a) {
    alert(a);
    debugger;
    var mode = scheduler.getState().mode;
    var myDate = scheduler.getState().date;
    alert(myDate);


    });
    if (mode == "units")
    {
        var hh= scheduler.getState().date;
        alert(hh);
        alert(mode);

    }
    else if (mode == "week" || mode=="decade") {

        var a = document.getElementById('resourcename');
        var cid = a.options[a.selectedIndex].value;
//here I get the unitId as i use list to filter_week.
        var n = scheduler.getState().date;
        alert(n);
// I get the same date(today's date) whenever i tried to click on any column in weekview or decade view
    }   
}

我在主体中附加showTitle(a)了函数,dhtlmxscheduler.js因为我没有找到任何文档来在标题上附加事件。请帮忙。

4

1 回答 1

0

您可以使用getActionData API

var unit = scheduler.getActionData(e).section;

其中 e - 本机 html 点击事件对象

于 2013-10-16T14:29:51.207 回答