Important
You are browsing the documentation for version 4.2 of OroCommerce, OroCRM and OroPlatform, which is no longer maintained. Read version 5.1 (the latest LTS version) of the Oro documentation to get the updated information.
See our Release Process documentation for more information on the currently supported and upcoming releases.
Default Editors
A technical reference to how JS renders different field types when using inline editing views.
defaultEditors : Object
Maps frontend types to editor views:
- defaultEditors: Object
- .string: function
- .phone: function
- .datetime: function
- .date: function
- .currency: function
- .number: function
- .integer: function
- .decimal: function
- .percent: function
- .select: function
defaultEditors.string: function
See TextEditorView for details.
Kind: static property of defaultEditors.
defaultEditors.phone: function
Please see TextEditorView for details.
Kind: static property of defaultEditors.
defaultEditors.datetime: function
Please see DatetimeEditorView for details.
Kind: static property of defaultEditors.
defaultEditors.date: function
Please see DateEditorView for details.
Kind: static property of defaultEditors.
defaultEditors.currency : function
Please see NumberEditorView for details.
Kind: static property of defaultEditors.
defaultEditors.number: function
Please see NumberEditorView for details.
Kind: static property of defaultEditors.
defaultEditors.integer: function
Please see NumberEditorView for details.
Kind: static property of defaultEditors.
defaultEditors.decimal: function
Please see NumberEditorView for details.
Kind: static property of defaultEditors.
defaultEditors.percent: function
Please see PercentEditorView for details.
Kind: static property of defaultEditors.
defaultEditors.select: function
Please see SelectEditorView for details.
Kind: static property of defaultEditors.