Method: AdminAssistant::Column::FormViewMethods#html_from_helper_method

Defined in:
lib/admin_assistant/column.rb

#html_from_helper_method(record) ⇒ Object



72
73
74
75
76
77
# File 'lib/admin_assistant/column.rb', line 72

def html_from_helper_method(record)
  html_method = "#{name}_input"
  if @action_view.respond_to?(html_method)
    @action_view.send(html_method, record)
  end
end