1

有没有办法更改 fullCalendar 使用的 id 字段的名称?像这样:

$('myCal').fullCalendar('option', 'idField', 'myCustomIdField').

或者像这样:

$('myCal').fullCalendar('option', 'idFunction', function(event){
    return "prefix_" + event.id;
}).

谢谢你的建议

4

1 回答 1

0

没有idField功能。该eventDataTransform选项确实是做到这一点的唯一方法

于 2017-10-04T16:53:52.067 回答