-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Backport 12.4] [TASK] Follow up: Merge properties to select multiple…
… side by side (#1145) [TASK] Follow up: Merge properties to select multiple side by side Releases: main, 12.4 Co-authored-by: lina.wolf <[email protected]>
- Loading branch information
1 parent
928ed0e
commit 5022b44
Showing
13 changed files
with
114 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
...ype/Select/MultipleSideBySide/_Properties/_FieldControl/_ResetSelection.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
.../ColumnsConfig/Type/Select/MultipleSideBySide/_Snippets/_AllowLanguageSynchronization.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
|
||
$selectField = [ | ||
'config' => [ | ||
'type' => 'select', | ||
'renderType' => 'selectMultipleSideBySide', | ||
'behaviour' => [ | ||
'allowLanguageSynchronization' => true, | ||
], | ||
], | ||
]; |
16 changes: 16 additions & 0 deletions
16
Documentation/ColumnsConfig/Type/Select/MultipleSideBySide/_Snippets/_DbFieldLength.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
$selectField = [ | ||
'label' => 'My field', | ||
'config' => [ | ||
'type' => 'select', | ||
'renderType' => 'selectMultipleSideBySide', | ||
'items' => [ | ||
['label' => '', 'value' => ''], | ||
['label' => 'Some label', 'value' => 'some'], | ||
['label' => 'Another label', 'value' => 'another'], | ||
], | ||
'default' => '', | ||
'dbFieldLength' => 10, | ||
], | ||
]; |