Important
You are browsing documentation for version 5.0 of OroCommerce. Support of this version ended in January 2025. Read the documentation for version 6.1 (the latest LTS version) to get up-to-date information.
See our Release Process documentation for more information on the currently supported and upcoming releases.
MultiSelectEditorView ⇐ SelectEditorView
<a name=”module_MultiSelectEditorView”></a> Multi-select content editor. Please note that it requires column data format corresponding to multi-select-cell.
Column configuration examples:
datagrids:
{grid-uid}:
inline_editing:
enable: true
# <grid configuration> goes here
columns:
# Sample 1. Full configuration
{column-name-1}:
inline_editing:
editor:
view: oroform/js/app/views/editor/multi-select-editor-view
view_options:
placeholder: '<placeholder>'
css_class_name: '<class-name>'
maximumSelectionLength: 3
validation_rules:
NotBlank: true
save_api_accessor:
route: '<route>'
query_parameter_names:
- '<parameter1>'
- '<parameter2>'
Options in YML
Column Option Name |
Description |
---|---|
inline_editing.editor.view_options.placeholder |
Optional. Placeholder translation key for an empty element |
inline_editing.editor.view_options.placeholder_raw |
|
inline_editing.editor.view_options.css_class_name |
Optional. Additional css class name for editor view DOM element |
inline_editing.editor.view_options.maximumSelectionLength |
Optional. Maximum selection length |
inline_editing.validation_rules |
Optional. Validation rules. See JS Validation topic for more information |
inline_editing.save_api_accessor |
Optional. Sets accessor module, route, parameters etc. |
Constructor Parameters
Extends: SelectEditorView
Param |
Type |
Description |
---|---|---|
options |
Object |
Options container |
options.model |
Object |
Current row model |
options.placeholder |
string |
Placeholder translation key for an empty element |
options.placeholder_raw |
string |
Raw placeholder value. It overrides placeholder translation key |
options.maximumSelectionLength |
string |
Maximum selection length |
options.validationRules |
Object |
See JS Validation topic for more information |
options.value |
string |
Initial value of edited field |