0

次のようなカスタムフィールドをイベントデータソースに追加したいと思います。

{"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_1customField_2を取得します。

Timeline.OriginalEventPainter.prototype._showBubble = function(x, y, evt) {

      var cust1 = evt.getCustom1();
      var cust2 = evt.getCustom2();
}

これらのgetメソッドを追加することは可能ですか?どうすればよいですか?

4

1 に答える 1

0

答えは次のとおりです:https ://groups.google.com/forum/#!topic / simile-widgets / om3EtWzGacQ

于 2012-09-18T14:39:46.307 に答える