Socvest

Results 42 comments of Socvest

Try [this](https://discuss.streamlit.io/t/trick-simple-multpage/26121) implementation

> Thanks @Socvest , that looks clean! Although my question is also in line with what `miro` [commented](https://discuss.streamlit.io/t/trick-simple-multpage/26121/5): > > > Is there a way that we can actually leverage...

I too am having this issue, any progress on this yet?

How are you implementing it? I used it in my app and it works fine with: ``` with st.form("form"): st_tags() ... ```

You could put it in a with statement: ``` with st.expander(): st_tags_sidebar() .... ```

> Please provide a code reproduction of the your issue. > > For guidance on how to do so see – https://stackoverflow.com/help/minimal-reproducible-example > > I encourage you to use codesandbox....

Thanks for trying. Not sure what the simplest form of the issue is but I think I might go for on click rather than hover.

I found a way to kinda do this based on the example in @Chandu 's example link. ``` const [zoomLevelShow, setZoomLevelShow] = useState(0) { // console.log(item); setZoomLevelShow(item.zoom); }} > ......

Yeah, so I recently found out how to do this. Basically a sell position is representative of a negative number (position value) and a buy position is representative of a...

Is there a fix for this yet? Anyone come up with anything?