Static
dateStatic
explodeStatic
formatConvert to SQL date / date time format (ISO8601) from a format given by the options parameter. Typically used with a set formatter.
Uses MomentJS - formats are defined by Moment.
Configured formatter function
Format to convert from.
Static
fromConvert a number from using any character other than a period (dot) to one which does use a period. This is useful for allowing numeric user input in regions where a comma is used as the decimal character. Use with a set formatter.
Configured formatter function
Optional
char: string = ','Decimal place character
Static
ifConvert an empty string to null
. Null values are very useful in
databases, but HTTP variables have no way of representing null
as a
value, often leading to an empty string and null overlapping. This method
will check the value to operate on and return null if it is empty.
Configured formatter function
Value to use if an empty value is submitted. null
is the typical value.
Static
implodeConvert an array of values from a checkbox into a string which can be used to store in a text field in a database.
Configured formatter function
Optional
delimiter: string = '|'Delimiter string (i.e. what to join on)
Static
sqlConvert from SQL date / date time format (ISO8601) to a format given by the options parameter. Typically used with a get formatter.
Uses MomentJS - formats are defined by Moment.
Configured formatter function
Format to convert to.
Static
toConvert a number with a period (dot) as the decimal character to use a different character (typically a comma). Use with a get formatter.
Configured formatter function
Optional
char: string = ','Decimal place character
Generated using TypeDoc
Formatter methods which can be used with getFormatter and setFormatter.
The methods in this class return a function for use with the formatter methods. Each method may define its own parameters that configure how the formatter operates. For example the date / time formatters take information on the formatting to be used.
Export