Replies: 3 comments 3 replies
-
By the way, I kind of hate to bring this up, but.... I learned about Pynecone a few days after learning about Streamlit; and, in as much as Streamlit is super popular and mature, there was that thing about performance, and running the script from the beginning over and over, etc, that made me like Pynecone better and go with it even though I had found the project only a few days old! Anyway, are you guys looking at Streamlit? For example, regarding precisely this number_input component...the one in Streamlit is very nice: ...I could really use these 3 features with Pynecone NumberInput. |
Beta Was this translation helpful? Give feedback.
-
One more into the mix I am going to have tens of input variables in a column, one or two may take on integral numbers, the rest are for material properties, dimensions in the thousands of mm, pressures, temperatures, etc., etc., all floating point numbers, really, and, so, the NumberInput increment and decrement functionality does not make sense; to that end, I would like to not even show them... ...is there a way to turn off the up-triangle, down-triangle stepper in the NumberInput widget? When I have too many of them line up, they visually crowd the screen and they don't even make sense for floating point numbers with decimals. Thanks |
Beta Was this translation helpful? Give feedback.
-
keyboard keys decimal vs numeric
scientific notation These are really good points overall thanks for testing out the framework and giving us feedback. Apologies for some of the bugs you have faced we still are pretty new so trying to fix as they come up. Feedback like this is really appreciated because some of these can be hard to find on our own. |
Beta Was this translation helpful? Give feedback.
-
prop:
input_mode
What's the difference between 'numeric' and 'decimal' ?
I don't readily notice one.
prop:
is_valid_character
Why does it insist in reformatting what I type?
There is value in typing a number in scientific notation, for example 1.23e-07, and I really don't want the widget to edit what I type and turn it into 0.000000123 ....now, I really need to squint and count how many zeroes I've got!
Let alone if I need to enter Boltzmann constant or Planck's constant ....then, with so many zeros on the left, I truly loose sight of the numbers.
If the widget needs to do some validation and make sure that the contents is a number or not, that's fine, but it shouldn't come back and change what I typed.
keyboard keys
"home" and "end" do not work for me; not only do they not work, they actually entirely replace the contents of the input field.
Beta Was this translation helpful? Give feedback.
All reactions