Important

You are browsing upcoming documentation for version 6.0 of OroCommerce, OroCRM, and OroPlatform, scheduled for release in 2024. Read version 5.1 (the latest LTS version) of the Oro documentation to get up-to-date 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.