0
下午所有,根據管理數據爲用戶檢查時間表
我發現這次很混亂。也許是因爲我沒有時間觀念,但現在我已經在我的管理的情況如下:
t.boolean "mon", default: false
t.boolean "tue", default: false
t.boolean "wed", default: false
t.boolean "thu", default: false
t.boolean "fri", default: false
t.time "start"
t.time "end"
我在我的預訂以下形式:
<%= simple_form_for(@booking) do |f| %>
<% if @booking.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@booking.errors.count, "error") %> prohibited this booking from being saved:</h2>
<ul>
<% @booking.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<ul>
<li><%= f.label :first_name %></li>
<li><%= f.text_field :first_name %></li>
<li><%= f.label :last_name %></li>
<li><%= f.text_field :last_name %></li>
<li><%= f.label :email %></li>
<li><%= f.text_field :email %></li>
<li><%= f.date_select :start_datetime %></li>
<li><%= f.time_select :start_datetime, :ignore_date => true, :minute_step => 15 %></li>
<li><%=f.input :length, input_html: { :style=> 'width: 120px'}, collection: [['30 Mins', 30], ['1 Hour', 60]], :class => 'dropdown-toggle' %></li>
</ul>
我希望能夠爲在預訂上輸入以匹配在用戶中設置的時間和日期。
任何人都可以幫助我圍繞這個時間問題。我試圖以最務實的方式做到這一點,但失敗了。
謝謝。
我從來沒有真正使用jQuery的。你能否給我一些想法,我將如何使用管理表中的代碼來允許顯示的日期和時間。 –
以下是關於如何將此功能與您的應用程序集成的更長時間的寫作。 http://stackoverflow.com/questions/12178385/rails-how-to-add-tooltip-events-in-datepicker-and-limit-them-in-few-months這就是說,如果你沒有很多jQuery或Rails的經驗,對於初學者項目來說這可能有點多。 –
挑戰接受 –