%# - - - - - - - - - - - - %>
<%# CHOICES %>
<%# - - - - - - - - - - - - %>
<%# - - - - - - - - - - - - %>
<%# DEFAULT CHOICE %>
<%# - - - - - - - - - - - - %>
<% if ff.object.choices.find_all{|c| c.persisted? }.any? %>
<% end %>
<% if ff.object.field_type == 'checkbox' %>
<%# - - - - - - - - - - - - %>
<%# ALLOW NULL %>
<%# - - - - - - - - - - - - %>
<%= t(:allow_null).capitalize %>
<%= ff.input :allow_null,
as: :boolean,
boolean_style: :inline,
input_html: { class: "form-item--input" },
checked_value: true,
unchecked_value: false,
selected: ff.object.allow_null,
default: false %>
<% end %>