class Formotion::RowType::NumberRow

Public Instance Methods

keyboardType() click to toggle source
# File lib/formotion/row_type/number_row.rb, line 7
def keyboardType
  if BW::Device.ipad?
    return UIKeyboardTypeNumberPad
  end
  UIKeyboardTypeDecimalPad
end