Actions
Feature #95460
openAdd "eval" to allowOverrideMatrix
Status:
New
Priority:
Should have
Assignee:
-
Category:
Miscellaneous
Target version:
Start date:
2021-10-04
Due date:
% Done:
0%
Estimated time:
PHP Version:
7.4
Tags:
Complexity:
Sprint Focus:
Description
Currently it is possible to change the configuration of a field through TSConfig only for these values ​​contained in the allowOverrideMatrix of FormEngine.
protected static $allowOverrideMatrix = [ 'input' => ['size', 'max', 'readOnly'], 'text' => ['cols', 'rows', 'wrap', 'max', 'readOnly'], 'check' => ['cols', 'readOnly'], 'select' => ['size', 'autoSizeMax', 'maxitems', 'minitems', 'readOnly', 'treeConfig'], 'group' => ['size', 'autoSizeMax', 'max_size', 'maxitems', 'minitems', 'readOnly'], 'inline' => ['appearance', 'behaviour', 'foreign_label', 'foreign_selector', 'foreign_unique', 'maxitems', 'minitems', 'size', 'autoSizeMax', 'symmetric_label', 'readOnly'], 'imageManipulation' => ['ratios', 'cropVariants'] ];
I think it would be useful if it were also possible to change the "eval" value through TSConfig
Actions