Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Customizable formatting in UI persistence #1760

Closed
mkrecek234 opened this issue Mar 10, 2022 · 1 comment
Closed

Customizable formatting in UI persistence #1760

mkrecek234 opened this issue Mar 10, 2022 · 1 comment

Comments

@mkrecek234
Copy link
Contributor

mkrecek234 commented Mar 10, 2022

Idea:

  • Not always is the Atk4/Data field content identical to its representation that we want to have.
  • Example: you store a float value 8378583.783745 in the database - in tables or other UI elements, like text or messages, you want to define the format. E.g., 8,378,583.78 or 8378584.
  • Solution: Approach to be able to add a UI characteristic to a model-specific field that defines the format.

Which fields types?
float, integer, date, datetime, time, boolean.

Challenge:
If you edit that field, you sure don't want it to be displayed in the format.

Suggestion:
I would fancy to at least be able to define it in the model init function, as to be passed on to UI. Otherwise it is double-work in your view elements. Such as $this->addField('amount' => ['type' => 'integer', 'ui' => ['format' => ['decimals' => 1, 'thousand_separator' => ',', 'prefix' => 'Hello', 'suffix' => ' kilograms']]);

related to #1126 and atk4/data#577

@mvorisek mvorisek changed the title Introduce field format property for defining how to display field content Impl. customizable formatting in UI persistence Mar 10, 2022
@mvorisek mvorisek changed the title Impl. customizable formatting in UI persistence Customizable formatting in UI persistence Mar 11, 2022
@mvorisek mvorisek added the MAJOR label Oct 2, 2022
@mvorisek
Copy link
Member

implemented in #1981

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

No branches or pull requests

2 participants