我正在使用SimpleForm + Bootstrap。我如何添加一個屬性到所有type="text"
輸入與類= span12
?SimpleForm默認輸入類
東西輸出是這樣的:
<div class="controls"><input autofocus="autofocus" class="string required span12" id="user_first_name" name="user[first_name]" required="required" size="50" type="text" value=""></div>
我試着用config.wrappers
打不過這個
ba.use :input, :wrap_with => { :class => 'span12' }
不起作用。它添加到包裝而不是修改輸入標籤。有什麼想法嗎?
SimpleForm.setup do |config|
config.wrappers :bootstrap, :tag => 'div', :class => 'control-group', :error_class => 'error' do |b|
b.use :html5
b.use :placeholder
b.use :label
b.wrapper :tag => 'div', :class => 'controls' do |ba|
ba.use :input
ba.use :error, :wrap_with => { :tag => 'span', :class => 'help-inline' }
ba.use :hint, :wrap_with => { :tag => 'p', :class => 'help-block' }
end
end
config.default_wrapper = :bootstrap
end
我想這可以作爲一個臨時解決方案,直到配置將允許它。 – clyfe 2013-08-03 13:20:11
對於那些通過Google來到這裏的人,現在從v2.2開始支持(參見[changelog](https://github.com/plataformatec/simple_form/blob/v2.2/CHANGELOG.md)), config.input_class'調用,但是這也會將容器div包裝在同一個類中,這使得引導樣式不可靠。因此,即使配置允許在所有輸入上設置類,這個答案仍然可能是最好的解決方案。 – nickcoxdotme 2014-02-06 00:50:46