Hi!
I’ve read several posts and tried different things to get this to work, but so far I am not getting the desired results. I am using a st.number_input() widget. The default value is an integer usally large, in the hundreds of thousands if not millions. The ideal situation would be to format the default value appearing when rendering the widget with the comma to separate thousands and make it easier to read, i.e. if the default value is 1000000, then when the widget is rendered it should indicate 1,000,000. I have tried different arguments for the format parameter with no luck. I do not want to convert this to text and then back to a number because it seems like it would require a “Submit” button, which I do not want to incorporate (This last statement based on an error I got when I was trying different options).
Any idea how to incorporate the comma/thousand separator when displaying the default integer in a st.number_input() widget?