Method: Formotion::Form#row

Defined in:
lib/formotion/form/form.rb

#row(key) ⇒ Object



106
107
108
109
110
111
112
113
114
115
# File 'lib/formotion/form/form.rb', line 106

def row(key)
  found = nil
  each_row do |row|
    if row.key == key
      found = row
      break
    end
  end
  found
end