PlatonB

Results 52 comments of PlatonB

I propose to implement `st.left_sidebar` and `st.right_sidebar`. Let `st.left_sidebar` be an alias of deprecated `st.sidebar` for some time due to backward compatibility.

It seems to be the same bug for me: https://user-images.githubusercontent.com/25541767/172182002-2b95f1a1-c084-4792-8d92-cdedf42cf2b9.mp4 Code: https://github.com/PlatonB/high-perf-bio/blob/master/_gui_streamlit.py

Unfortunately, in 1.12.2 the issue remains. @uyjco0 I guess you couldn't reproduce the problem because of the very short time of processing your data.

It's strange that such powerful ORM doesn't provide this yet.

A screencast I prepared as an idea for the most minimal implementation of #4656. It turns out the video is also relevant for the current issue. At the end of...

My thoughts on this. - Github has a rather weak search engine, which raises the possibility of issues duplication. - The presence of duplicates shows that the idea is quite...

@jrieke I suppose the right sidebar would be useful to relieve the left sidebar. This is especially important for multi-page interfaces, since page links take up space on the left:...

@vdonato I think it's a good idea to encompass here **other widgets** besides `st.text_input`. Suppose there is a database table with `#CHROM`, `POS` and `ID` fields. It needs to create...

Estimated syntax: ``` with st.cascade_input(): st.any_input_widget(args) ``` The user writes any input widget, and `st.cascade_input` will allow to spawn it inside the running application.

@jrieke Unfortunately, I don't understand the relation between editable dataframes and the multiple/cascade input widget. But if to try making an analogy, I think my proposal is closer to #5941....