如何在dhtmlx gantt中显示灯箱的开始日期,结束日期和持续时间?

时间:2015-03-24 16:05:08

标签: javascript dhtmlx

在我的Web应用程序J2EE中,我正在使用dhtmlx来显示甘特图, 我在灯箱中显示了描述的值

alert(gantt.getLightboxSection("description").getValue())

我不知道如何显示其他字段,我用过

alert(gantt.getLightboxSection("time").getValue());

但我有[对象]。 如何在灯箱中显示start_date,end_date和持续时间? 这里是灯箱的图片

1 个答案:

答案 0 :(得分:0)

时间控件映射到多个属性,因此它返回一个具有以下结构的对象

{
  start_date: Date,
  end_date: Date,
  duration: Number
}

如果要在警报中查看它,则需要将对象字符串化为JSON:

alert(JSON.stringify(gantt.getLightboxSection("time").getValue()));

示例http://docs.dhtmlx.com/gantt/snippet/ed9eab5c

如果您需要格式化输出,则可以访问对象值 - http://docs.dhtmlx.com/gantt/snippet/ff33992d