Sha256: 21db70ba457ae22102627089ea33d0d79999ec94d277cc21a470351ecac36dbf
Contents?: true
Size: 1.54 KB
Versions: 44
Compression:
Stored size: 1.54 KB
Contents
module CmAdmin module Models class Row # Description # A row is like a container which holds a list of form_field or section. # These list of fields or section are iterated and displayed on new/edit page. # A row is like a wrapper on the HTML, which adds a div element 'row' class from bootstrap. attr_accessor :sections, :display_if, :row_fields def initialize(current_action, cm_model, display_if, &block) @sections = [] @row_fields = [] @display_if = display_if || lambda { |arg| return true } @current_action = current_action @cm_model = cm_model instance_eval(&block) end def form_field(field_name, options={}, arg=nil) if @current_action.is_nested_field @nested_table_fields[@current_action.nested_table_name] ||= [] @nested_table_fields[@current_action.nested_table_name] << CmAdmin::Models::FormField.new(field_name, options[:input_type], options) else @row_fields << CmAdmin::Models::FormField.new(field_name, options[:input_type], options) end end def cm_section(section_name, col_size: nil, display_if: nil, &block) @sections << CmAdmin::Models::Section.new(section_name, @current_action, @model, display_if, col_size, &block) end # This method is deprecated. Use cm_section instead. def cm_show_section(section_name, col_size: nil, display_if: nil, &block) cm_section(section_name, col_size: col_size, display_if: display_if, &block) end end end end
Version data entries
44 entries across 44 versions & 1 rubygems