2012-05-16 82 views

回答

2

這就是如何在事件內創建簡單的href鏈接:

1)轉到事件配置控制檯並在「自定義字段」部分下創建自定義字段。給該字段命名。在這個例子中,稱之爲'url'。選擇其類型爲'TextArea'。

2)創建另一個自定義字段,將其稱爲'link_title'.Also'TextArea'。說明是可選的。

SAVE

3)轉到事件控制檯的'模板'部分。在第一部分(... scheduler.templates.event_text =功能(開始,結束,事件){...),您可以輸入文字,就把 - >

return "<b> "+event.text+"</b><br><br><a href=\"http://" + event.url + "\">" + event.link_title + "</a>"; 

SAVE

當你從主日曆中創建您的活動,您將看到額外的字段。輸入它們,保存你的事件,然後瞧。嘟嘟甜。

2

你是什麼意思日曆事件?

是它加入了新的事件?那麼它必須使用收藏夾來完成(內置選項)

scheduler.config.lightbox.sections=[ 
      { name:"description", height:50, map_to:"text", type:"textarea", focus:true }, 
      { name:"location", height:43, map_to:"event_location", type:"textarea", 
       default_value:"Blackheath Avenue London,Greenwich,Greater London SE10 8XJ,UK"}, 
      {name:"recurring", height:115, type:"recurring", map_to:"rec_type", 
       button:"recurring"}, 
      { name:"time", height:72, type:"time", map_to:"auto"} 
     ]; 

在這裏使用的每個標籤是由插件suppoted ,,,,你想有一個單獨的定製燈箱去

http://docs.dhtmlx.com/scheduler/custom_details_form.html

This is the preview

相關問題