Skip to content

Commit

Permalink
see cl 2.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Patzer committed Sep 30, 2020
1 parent 4f87144 commit beb0fe8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,9 @@
# Changelog
All notable changes to this project will be documented in this file.

## [2.7.4] - 2020-09-30
- fixed readme

## [2.7.3] - 2020-09-25
- fixed tinymce bugs

Expand Down
7 changes: 4 additions & 3 deletions README.md
Expand Up @@ -30,6 +30,7 @@ Use the inputType "multiColumnEditor" for your field.
'someField' => array(
'label' => &$GLOBALS['TL_LANG']['tl_my_table']['someField'],
'inputType' => 'multiColumnEditor',
'exclude' => true,
'eval' => array(
'multiColumnEditor' => array(
// set to true if the rows should be sortable (backend only atm)
Expand All @@ -55,9 +56,9 @@ Use the inputType "multiColumnEditor" for your field.
// place your fields here as you would normally in your DCA
// (sql is not required)
'field1' => [
'label' => 'field 1',
'inputType' => 'text',
'eval' => ['groupStyle' => 'width:150px', 'submitOnChange' => true]
'label' => 'field 1',
'inputType' => 'text',
'eval' => ['groupStyle' => 'width:150px', 'submitOnChange' => true]
],
'field2' => [
'label' => 'field 2',
Expand Down

0 comments on commit beb0fe8

Please sign in to comment.