我正在使用带有asp.net MVC 5应用程序的完整日历。
当我点击一个空白区域时,我会得到一个用于创建事件的模态视图。这很完美。
当我点击一个事件时,我想获取事件数据,还有一些其他数据,然后只是开始日期结束日期和描述。
我有以下内容:
eventRender: function (event, element) {
var id = event.id;
element.popover({
placement: 'top',
html: true,
content: '<button id="customers" class="btn btn-default" onclick="KlantenModal(' + id + ')">Klant overzicht</button>',
animation: true
});
}
调用模态的函数。
function KlantenModal(event) {
$('#klanten #eventId').val(event);
$('#klanten').modal('show');
}
和bootstrap模式:
<div class="modal fade" id="klanten" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">Klanten</h4>
</div>
<div class="modal-body">
/* here I want some Data eg. names of customers */
<input type="hidden" id="eventId" name="eventId" />
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<button type="submit" class="btn btn-primary"></button>
</div>
</div>
</div>
答案 0 :(得分:0)
如果我理解你,你唯一要做的就是为这个事件添加字段:
代码中的某处使用不同的客户填充数组,并将该数组添加到事件属性
var customers = [];
customers.push("im customer x");
customers.push("im customer y");
...
events:[
{
'start': 2013-12-30,
'end': 2013-12-30,
'allDay': true,
'customers': customers
}
当您点击活动并访问活动字段时,您将获得包含当天客户的客户字段。