次のようなカスタムフィールドをイベントデータソースに追加したいと思います。
{"events":
[
{"isDuration": "true",
"description": "my description
"color": "#ffcc00",
"image": "/images/my-img.jpg",
"link": "http://www.google.co.uk",
"icon": "/images/red-ico.png",
"end": null,
"title": "my title",
"start": "2012,09,30",
"textColor": "#777",
"customField_1": "abc"
"customField_2" : "def"}
]
}
次に、次のように、showBubbleイベントでcustomField_1とcustomField_2を取得します。
Timeline.OriginalEventPainter.prototype._showBubble = function(x, y, evt) {
var cust1 = evt.getCustom1();
var cust2 = evt.getCustom2();
}
これらのgetメソッドを追加することは可能ですか?どうすればよいですか?