是否可以为 dhtmlx 调度程序设置两个网格视图?
Is it possible to have two gridviews for dhtmlx scheduler?
我正在尝试使用 dhtmlx 调度程序库显示两个网格视图。我们使用调度程序的方式是让员工可以退出。现在,我们可以将其视为月视图,但我们也希望拥有日视图。
我能够创建网格,但是当我尝试单击按钮时它不显示日报表。
这是一个代码片段
scheduler.locale.labels.grid_tab = "Month";
scheduler.createGridView({
name:"grid",
fields:[ // defines columns of the grid
{id:"date", label:'Date', sort:'date', width:300, align:"left"},
{id:"employee", label:'Employee', sort:'str', width:400, align: "*"},
{id:"room_description", label:'Destination', sort:'str', width:600, align:'left'}
],
paging:true,
unit:"month",
step:1
});
scheduler.locale.labels.grid_tab2 = "Day Report";
scheduler.createGridView({
name:"day_grid",
fields:[ // defines columns of the grid
{id:"date", label:'Date', sort:'date', width:300, align:"left"},
{id:"employee", label:'Employee', sort:'str', width:400, align: "*"},
{id:"room_description", label:'Destination', sort:'str', width:600, align:'left'}
],
paging:true,
unit:"day",
step:1
});
您的代码似乎适用于调度程序演示
http://docs.dhtmlx.com/scheduler/snippet/b9320394
唯一的问题是您需要正确定义 day_grid 视图的标签,变量应命名为 "day_grid_tab" 而不是 "grid_tab2"
scheduler.locale.labels.day_grid_tab = "Day Report";
我正在尝试使用 dhtmlx 调度程序库显示两个网格视图。我们使用调度程序的方式是让员工可以退出。现在,我们可以将其视为月视图,但我们也希望拥有日视图。
我能够创建网格,但是当我尝试单击按钮时它不显示日报表。
这是一个代码片段
scheduler.locale.labels.grid_tab = "Month";
scheduler.createGridView({
name:"grid",
fields:[ // defines columns of the grid
{id:"date", label:'Date', sort:'date', width:300, align:"left"},
{id:"employee", label:'Employee', sort:'str', width:400, align: "*"},
{id:"room_description", label:'Destination', sort:'str', width:600, align:'left'}
],
paging:true,
unit:"month",
step:1
});
scheduler.locale.labels.grid_tab2 = "Day Report";
scheduler.createGridView({
name:"day_grid",
fields:[ // defines columns of the grid
{id:"date", label:'Date', sort:'date', width:300, align:"left"},
{id:"employee", label:'Employee', sort:'str', width:400, align: "*"},
{id:"room_description", label:'Destination', sort:'str', width:600, align:'left'}
],
paging:true,
unit:"day",
step:1
});
您的代码似乎适用于调度程序演示 http://docs.dhtmlx.com/scheduler/snippet/b9320394
唯一的问题是您需要正确定义 day_grid 视图的标签,变量应命名为 "day_grid_tab" 而不是 "grid_tab2" scheduler.locale.labels.day_grid_tab = "Day Report";