Creates an instance of Field.
Name of the database column
Optionalname: stringName to use in the JSON output from Editor and the HTTP
submit from the client-side when editing. If not given then the
dbField name is used.
Get the database column name
Configured column name
Set the database column name
Column name to set
Self for chaining
Get the get flag for the field (i.e. if the field should be
read from the database).
True if gettable, false otherwise.
Set the get flag.
true to mark as readable, false otherwise
Self for chaining
Set the get formatter.
When the data has been retrieved from the server, it can be passed through a formatter here, which will manipulate (format) the data as required. This can be useful when, for example, working with dates and a particular format is required on the client-side.
Formatter to use.
Self for chaining.
Get the currently applied get value.
Value - will be undefined by default.
Set the get value for the field.
If given, then this value is used to send to the client-side, regardless of what value is held by the database.
Value to set
Self for chaining
Indicator to say if this field can be read over http (i.e. externally)
Get the field's configured name.
Current name.
Set the field's name.
The name is typically the same as the dbField name, since it makes things less confusing(!), but it is possible to set a different name for the data which is used in the JSON returned to DataTables in a 'get' operation and the field name used in a 'set' operation.
Name to set
Self for chaining
Get the currently configured options for the field.
Options object configured for this field
Set a custom option that will be used to get the options for this field
Options instance
Self for chaining
Create an options instance based on the parameters passed in
DB table name
DB column name for the value field
DB column name for the label field
SQL condition
Formatting function to transform the text
Order to apply
Self for chaining
Get the SearchBuilder options for this field if configured
SearchBuilder options
Set how a list iof options (values and labels) will be retrieved for the fields SearchBuilder.
SearchBuilderOptions
Self for chaining
Get the SearchPanes options for this field if configured
SearchPanes options
Set how a list iof options (values and labels) will be retrieved for the fields SearchPanes.
SearchPanesOptions
Self for chaining
Set the field's set configuration.
A field can be marked as read only using this option, to be set only during an create or edit action or to be set during both actions. This provides the ability to have fields that are only set when a new row is created (for example a "created" time stamp).
Set flag.
Self for chaining.
Set the set formatter.
When the data has been retrieved from the server, it can be passed through a formatter here, which will manipulate (format) the data as required. This can be useful when, for example, working with dates and a particular format is required on the client-side.
Editor has a number of formatters available with the Format class which can be used directly with this method.
Formatter to use.
Self for chaining.
Get the currently applied set value.
Value - will be undefined by default.
Set the set value for the field.
If given, then this value is used to write to the database regardless of what data is sent from the client-side.
Value to set
Self for chaining
Set the 'validator' of the field.
The validator can be used to check if any abstract piece of data is valid or not according to the given rules of the validation function used.
Multiple validation options can be applied to a field instance by calling this method multiple times. For example, it would be possible to have a 'required' validation and a 'maxLength' validation with multiple calls.
Editor has a number of validation available with the Validator class which can be used directly with this method.
Validator to add to the field
OptionalsetFormatted: booleanSelf for chaining
Set a formatting method that will be used for XSS checking / removal. This should be a function that takes a single argument (the value to be cleaned) and returns the cleaned value.
Editor will use xss-filters by default for this operation, which is built
into the software and no additional configuration is required, but a
custom function can be used if you wish to use a different formatter.
If you wish to disable this option (which you would only do if you are absolutely confident that your validation will pick up on any XSS inputs) simply provide a closure function that returns the value given to the function. This is not recommended.
Enable / disable XSS protection, or set a formatter.
Self for chaining.
Field definitions for the DataTables Editor.
Each Database column that is used with Editor can be described with this Field method (both for Editor and Join instances). It basically tells Editor what table column to use, how to format the data and if you want to read and/or write this column.
Field instances are used with the Editor.field and Mjoin.field methods to describe what fields should be interacted with by the editable table.
Field