class Formize::Definition::FieldSet

Represents a set of fields which can depend on other fields It can be used with a title

Attributes

title[R]

Public Class Methods

new(form, parent, name=nil, options={}) click to toggle source
Calls superclass method Formize::Definition::Group::new
# File lib/formize/definition/field_set.rb, line 56
def initialize(form, parent, name=nil, options={})
  super(form, parent, name, options)
  @title = name
end