API DataValidator FieldType - chsxf/mfx GitHub Wiki

FieldType Enum

chsxf\MFX\DataValidator

enum FieldType: string

Summary

Enum of all available data validation types

Since 1.0

Cases

case CHECKBOX = 'checkbox';

Since 1.0

case COLOR = 'color';

Since 1.0

case DATE = 'date';

Since 1.0

case EMAIL = 'email';

Since 1.0

case FILE = 'file';

Since 1.0

case HIDDEN = 'hidden';

Since 1.0

case MONTH = 'month';

Since 1.0

case NUMBER = 'number';

Since 1.0

case RADIO = 'radio';

Since 1.0

case RANGE = 'range';

Since 1.0

case SELECT = 'select';

Since 1.0

case TEL = 'tel';

Since 1.0

case TEXT = 'text';

Since 1.0

case TIME = 'time';

Since 1.0

case URL = 'url';

Since 1.0

case WEEK = 'week';

Since 1.0

case PASSWORD = 'password';

Since 1.0

case INTEGER = 'integer';

Since 1.0

case MULTI_SELECT = 'multiselect';

Since 1.0

case NEGATIVE_INTEGER = 'neginteger';

Since 1.0

case NEGATIVEZERO_INTEGER = 'negzerointeger';

Since 1.0

case POSITIVE_INTEGER = 'posinteger';

Since 1.0

case POSITIVEZERO_INTEGER = 'poszerointeger';

Since 1.0

case TEXTAREA = 'textarea';

Since 1.0

case LOWERCASE_WORD = 'lower_word';

Since 1.0

case UPPERCASE_WORD = 'upper_word';

Since 1.0

case WORD = 'word';

Since 1.0