simple-form

    1熱度

    1回答

    所以我已經得到了這些觀點: new.html.erb <div class="booyah-box col-xs-10 col-xs-offset-1"> <h1>Expose Your Hidden Gem</h1> <%= simple_form_for @place do |f| %> <%= f.input :name, error: "Name is mandatory" %>

    0熱度

    1回答

    <style> .mobile_note_form2 { font-size: 30px; } </style> <div class="mobile_note_form2"> <fieldset> <%= f.date_select :created_at %><br/><br/> <%= f.text_area :note %><br/>

    0熱度

    1回答

    我在我的rails項目中使用了設計和簡單形式。我想在表單上顯示所有當前用戶,然後能夠輸入每個相應員工的銷售信息。我一直在遍歷員工表並顯示他們,我可以創建一個表單並輸入銷售信息,並將其與用戶相關,但出於某種原因,我似乎無法將這兩者結合起來。在我看來,我也很綠。 Schema.rb ActiveRecord::Schema.define(version: 20160812021027) do

    1熱度

    1回答

    我想弄清楚如何使用沒有預定標籤的簡單窗體。 我已經嘗試將標籤設置爲false,如下所示,但它不會停止出現在集合旁邊的屬性('trl')的標籤。 <%= f.input :trl do %> <%= f.select :trl, Trl.all.map { |t| [t.title, t.id] }, label: false, include_blank: false, prompt:

    0熱度

    2回答

    我已經有了這個簡單的表單,我希望能夠使用CSS來設置下拉菜單的樣式。 input_html: { class: "form-dropdown" }不改變風格。我如何能夠正確添加一個類到簡單的表格collection_select以在CSS中設置樣式,還是有其他方式可以設置下拉菜單的樣式? 這是我的簡單形式: <%= simple_form_for @document do |f| %>

    0熱度

    2回答

    有另一種方式使用的,而不是這一個,我使用的,因爲它看起來醜陋 this is how the form looks like 這是代碼 紙夾來存儲多個圖像 應用程序/視圖/職位/ _form.html.erb <%= simple_form_for @post, html: { class: 'form-horizontal', multipart: true } do |f| %> <

    0熱度

    1回答

    我很難弄清楚如何讓我的選擇字段在Rails 4.2應用程序中使用Simple_form的enum屬性工作。 這裏是我的模型: class Employee < ActiveRecord::Base # returns the full name of the employee. This code is found in a concern called name.rb inc

    5熱度

    2回答

    我在模型上有與模型字段相對的錯誤,所以這些錯誤會添加到錯誤[:base]中。在我使用的簡單表單代碼中; <%= f.error_notification %> 這顯示了普通錯誤,但不是基本錯誤。我如何查看基礎錯誤?

    2熱度

    3回答

    我想弄清楚如何渲染編輯鏈接到嵌套窗體。 我有稱爲項目和潛在用途的模型。該協會是: 項目 has_many :potential_uses accepts_nested_attributes_for :potential_uses, reject_if: :all_blank, allow_destroy: true 可能的用途 belongs_to :project belong

    2熱度

    1回答

    是否有可能像其他複選框標籤一樣左側複選框,右側的複選框與其他橫向​​形式的輸入一樣? 我的當前設置 它看起來很可怕。 編輯: <%= simple_form_for :apartment, :html => {:multipart => true, :class => 'form-horizontal'}, wrapper: :horizontal_form do |f| %> <%=