Project

General

Profile

Actions

Feature #102217

open

allow number with more than two digit in a field with TCA type="number"

Added by Dieter Porth about 1 year ago. Updated 7 days ago.

Status:
Under Review
Priority:
Should have
Assignee:
-
Category:
-
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

Screenshot 2024-09-21 083447.png (28.5 KB) Screenshot 2024-09-21 083447.png Dieter Porth, 2024-09-21 06:35

Related issues 2 (0 open2 closed)

Related to TYPO3 Core - Feature #98255: Add „float“ evaluation option for TCA type „input“Closed2022-09-03

Actions
Related to TYPO3 Core - Feature #102237: Auto-create DB fields from TCA columns for type "number"ClosedAnja Leichsenring2023-10-24

Actions
Actions #2

Updated by Chris Müller about 1 year ago

  • Related to Feature #98255: Add „float“ evaluation option for TCA type „input“ added
Actions #3

Updated by Garvin Hicking 12 months ago

  • Related to Feature #102237: Auto-create DB fields from TCA columns for type "number" added
Actions #4

Updated by Gerrit Code Review 5 months ago

  • Status changed from New to Under Review

Patch set 1 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/84526

Actions #5

Updated by Gerrit Code Review 5 months ago

Patch set 2 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/84526

Actions #6

Updated by Dieter Porth about 1 month ago

I have the following TCA
``
<config>
<type>number</type>
<format>decimal</format>
<size>20</size>
<range>
<lower>-90</lower>
<upper>90</upper>
</range>
<slider>
<step>0.0001</step>
</slider>

<default>47.5993</default>
</config>

``
If I change the last digit in the default-value, I can`'t save the data. (See Screenshot)

I miss a precision parameter in the definition of the number-field.

Actions #7

Updated by Benni Mack 7 days ago

  • Target version changed from 13.3 to Candidate for Major Version
Actions

Also available in: Atom PDF