我正嘗試構建一個時間段日曆,藉此預訂管理器可以從日曆創建時間段。我已經發現了一些例子如下:Xrtml和Ruby on Rails,日曆預訂插槽
想知道是否有可能有xRTML與Ruby on Rails的工作。我下載了.js文件並將其放在我的assets/javascript文件夾中。
我發現xRTML有自己的標籤,並將演示代碼放在index.html.erb中。但是這似乎並不奏效。
我index.html.erb文件看起來像下面這樣:
<xrtml:config debug="false">
<xrtml:connections>
<xrtml:connection appkey="myAppKey" authenticate="false"
authtoken="myDevToken" url="http://developers.realtime.livehtml.net">
<xrtml:channels>
<xrtml:channel name="myChannel" permission="write"/>
</xrtml:channels>
</xrtml:connection>
</xrtml:connections>
</xrtml:config>
<xrtml:calendar channelid="myChannel" dayonly="false"
enddate="2011-12-13" handlerurl="./handler/calendarTest.ashx"
id="calendarXPTO" lang="en" receiveownmessages="true"
startdate="2011-08-13" target="#divcalendar" userid="userxpto">
<xrtml:triggers>
<xrtml:trigger name="myTrigger"/>
</xrtml:triggers>
<xrtml:slots>
<xrtml:slot value="09:00 - 10:00|10:00 - 11:00|11:00 - 12:00|12:00 - 13:00|15:00 - 16:00|16:00 - 17:00|17:00 - 18:00"/>
<xrtml:slot value="09:00 - 18:00" weekday="Sat"/>
<xrtml:slot weekday="Sun"/>
</xrtml:slots>
</xrtml:calendar>
我一直在使用jQuery的完整的日曆幫我實現我所試圖做的也算。然而,這證明比我想象的更困難。有沒有什麼類似的,就像我想要做的那樣
我最初的想法是有一些排序的垂直時間和水平插槽的日曆,使用戶點擊一個加號,將創建新的插槽照原樣。
感謝您對我所描述的深入而有用的答案做出迴應。非常感激 :) – David 2012-02-10 11:59:54