in my perspective apps i have 2 problems with Numeric entry field (version 8.1.28).
If the spinner is enabled the "numeric entry field" changes its size when it receives focus. How can I prevent the resizing of the element's size?
Normal condition:
Focused condition:
If i disable the spinner i'm unable to update a value more than once. I have to refresh the page to regain the ability to change the value. If I don't refresh the page, I can only make changes to the data again after performing a specific number of operations or manually losing and regaining focus multiple times.
EDIT on point 2: The issue does not occur when the spinner is enabled.
Is the problem that the spinner covers up the decimal number? If so, you can use the padding property to move the number over to allow room for the spinner.
What are all of the paddings and margins used for? They seem a bit excessive. Will style.gap: 5px set on the flex container replace these?
And maybe style.margin: 10px as well, after removing margin and padding from the individual flex components
Wonderful!! after removing margin and padding from the individual flex components and using the "style.gap" on container the control doesn't change size and position when focused!
I that way i can keep enable the control's spin to avoid issue on data insert.