getLightboxValues

从lightbox的各个section中获取值

object getLightboxValues();
object一个包含各个值的对象

Example

gantt.getLightboxValues();

Details

此方法以对象形式返回值,格式为'section_name:value'键值对。

const values = gantt.getLightboxValues();
values = {
    duration: 2,
    end_date: Fri Apr 05 2013 00:00:00 GMT+0300 (GTB Daylight Time),
    start_date: Wed Apr 03 2013 00:00:00 GMT+0300 (GTB Daylight Time),
    text: "Task #2.1"
}
See also
Back to top