Rails - Table 列表 - 值作为复选框
Rails - Table listing - value as checkbox
在列表 (index.html.erb) 中,如何将布尔字段的值显示为 check_box?
<td><%= annotation.active %></td>
目前它列为 "true" / "false"。
使用check_boxAPI形式FormHelper
<td><%= check_box_tag 'active', annotation.active %></td>
如果你想 checked
使用
<td><%= check_box_tag 'active', annotation.active, true %></td>
更多检查reference。
应该可以!
使用check_box_tag真
例如
check_box_tag '', '', annotation.active , disabled: true
在列表 (index.html.erb) 中,如何将布尔字段的值显示为 check_box?
<td><%= annotation.active %></td>
目前它列为 "true" / "false"。
使用check_boxAPI形式FormHelper
<td><%= check_box_tag 'active', annotation.active %></td>
如果你想 checked
使用
<td><%= check_box_tag 'active', annotation.active, true %></td>
更多检查reference。
应该可以!
使用check_box_tag真 例如
check_box_tag '', '', annotation.active , disabled: true