Actions
Feature #102217
openallow number with more than two digit in a field with TCA type="number"
Status:
Under Review
Priority:
Should have
Assignee:
-
Category:
-
Target version:
Start date:
2023-10-21
Due date:
% Done:
0%
Estimated time:
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
If you define in your SQL conversion_factor_to_g decimal(24,12) NOT NULL DEFAULT '0.000000000',
and in your TCA 'config' => [
'type' => 'number',
'format' => 'decimal',
'slider' => [
'step' => 0.000000001,
],
]
you can only input numbers with at least two digits. You have no chance to input more precise numbers and the eval='double2'
does not exist anymore.
The current behavior should be renamed from 'decimals' to 'currency'.
The current attribute should accept a number, which defines the number of digits after the comma, you want use for storing of your number at least.
Files
Actions