- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有以下 ruby :
<%= simple_form_for @answer, url: presentation_survey_path(@presentation) do |f| %>
<%= f.collection_radio_buttons :option_id, @question.options_array, :first, :last, {label: false} do |b| %>
<div class="col-sm-4">
<%= b.label(class: 'btn btn-large', style: 'margin-right: 20px; margin-left: 20px;') {b.radio_button(id: b.object.last, class: 'answer-input', style: 'display: none;') + b.text } %>
</div>
<% end %>
它正确地生成了 html,除了它生成了两个标签:
<span>
<label for="answer_option_id_15">
<div class="col-sm-4">
<label class="btn btn-large" for="answer_option_id_15" style="margin-right: 20px; margin-left: 20px;">
<input class="answer-input" id="Way too many" name="answer[option_id]" style="display: none;" type="radio" value="15" />
Way too many
</label>
</div>
</label>
</span>
出于某种原因,它正在生成第一个标签。我只想保留第二个。标签:false 不起作用。如何去掉第一个标签?
最佳答案
根据docs :
For check boxes and radio buttons you can remove the label changing boolean_style from default value :nested to :inline.
此外,simple_form
有一些用于 collection_radio_buttons
的选项,这些选项记录在代码中:
# Collection radio accepts some extra options:
#
# * checked => the value that should be checked initially.
#
# * disabled => the value or values that should be disabled. Accepts a single
# item or an array of items.
#
# * collection_wrapper_tag => the tag to wrap the entire collection.
#
# * collection_wrapper_class => the CSS class to use for collection_wrapper_tag
#
# * item_wrapper_tag => the tag to wrap each item in the collection.
#
# * item_wrapper_class => the CSS class to use for item_wrapper_tag
#
# * a block => to generate the label + radio or any other component.
在我的例子中,将 item_wrapper_tag
设置为 false
并将 boolean_style
设置为 :inline
就可以了,例如:
<%= f.collection_radio_buttons :option_id, @question.options_array, :first, :last, boolean_style: :inline, item_wrapper_tag: false do |b| %>
关于ruby-on-rails - simple_form collection_Radio_buttons 生成额外的标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29975087/
我不确定这应该在 Java 脚本中还是在 HTML 部分中完成。我希望在 HTML 部分中使用这样的内容: "the_value_from_the_select_tag" %> Java 脚本中的工
我正在寻找一种方法来管理表单中的多个嵌入对象。 找到了 bowsersenior 的 formtastic 解决方案 Formtastic with Mongoid embedded_in relat
是否可以使用 CSS 将 simple_form 输入框的默认颜色从灰色更改为另一种颜色?这是我的 CSS: .simple_form div.input { width: 500px;
我正在尝试让我的 simple_form 提示显示为 twitter-bootstrap 工具提示,这样提示仅在用户选择输入字段或将鼠标悬停在输入字段上时出现。 表单项看起来像(在 haml 中):
我在我的 Rails 4.2 元素中使用 simple_form。在使用错误显示进行验证后,我在行/字段对齐方面遇到了一些问题。任何验证的字段都不会与验证失败的字段垂直对齐。
:boolean, :label => false, :boolean_style => :inline %> Accept true %> and true%> 它最终看起来像这样 将它们排在
我有很多控件的复杂表单,由于其灵 active ,我目前正在使用 simple_form gem。但是当我想做一些更复杂的事情时,我遇到了几个目前对我来说还很模糊的问题。我想介绍组合集合输入,它将呈现
简介:在应用程序中使用 simple_form,向属性添加验证,并在表单中的每个字段旁边正确显示错误。此外,我还有 2 个自定义验证,用于添加与模型属性无关的自定义错误消息。 问题:在基本的 Rail
如何使用表中的 simple_form 分组选项创建选择,而不是来自集合?试过: = f.input :countries, :collection => [["North America",[["U
在 simple_form github 上的示例 repo,有一个包含包装器信息的块。 https://github.com/rafaelfranca/simple_form-bootstrap/b
我正在使用 https://github.com/plataformatec/simple_form并试图发送一个额外的参数。我有一个 Task、List 和 ListTask 模型,在列表的新页面中
我正在查看这个 simple_form_for 表单(注册表单)(registrations/new.html.erb) 去用户/注册 resource_name, :url => registra
我在表单上使用 simple_form gem,并希望使用具有三个 text_fields 字段而不是三个选择字段的日期字段。 我试过这个: :string, :label => "Dia",
我想我要问一个由两部分组成的问题;如果这应该分成 2 个问题,我很抱歉。 首先,我试图将类(class)存储到 course 中与 course_days 具有 ActiveRecord 关系的表(类
我有一个名为“治疗”的模型。它本质上是一个与请求者和被请求者的 session 提案,也是一个 (1) :intro (2) :proposed_venue (3) :proposed_date (4
我正在尝试发送一个额外的参数,使用 simple_form 在 rails 中提交表单我认为这可以解决问题: 1) do |f| %> 但在 Controller 中,该参数被忽略 我在 here
我第一次在这里发帖! 我有一个表单,其中有很多字段并且它工作得很好,除非发生任何验证错误... 如果引发“validates_presence_of”,则会打开“ActiveRecord::Recor
我想为收藏品使用标签(例如,它们的翻译)。 = simple_form_for(@client) do |f| = f.error_notification .form-inputs
我正在切换我的应用程序以使用 simple_form但我对如何显示文本输入有点困惑。例如,当我执行以下操作时: f.input :foobar # 我得到一个 textarea 而不是在输入中输入一
我想在 simple_form 生成的输入标签上有一个额外的数据属性。 以下不起作用: 'date_picker', :data => {:datepicker => :datepicker} %
我是一名优秀的程序员,十分优秀!