0

在 C# 中,我使用此代码设置时间轴视图的Dx属性

var timeline = new TimelineView("timeline", "EmployeeId");
timeline.Dx = 174;

但是我怎样才能使用 jQuery 来实现呢?我想设置现有调度程序的 Dx 属性。

4

1 回答 1

1

At the client-side timeline configs are stored in scheduler.matrix property. You can access certain config in following way:

scheduler.matrix["viewName"]

for example:

scheduler.matrix["timeline"].dx = 174;
scheduler.updateView();//apply changes
于 2013-05-02T11:50:09.250 回答