Alexander Martin
Alexander Martin
@sfc-gh-jcarroll actually asked me to make a ticket for this the other week, haha. I'll just post my support for a `st.rerun(scope='fragment')` feature here. Having this feature would allow me...
I would also like to have a bit more granular control over how long AppSessionManager keeps tabs open. A configurable parameter like "websocketSessionTimeout" that would cause a session to be...
Would love support for ADFS/SSO auth so you don't have to stand up a whole separate endpoint in nginx just to get that one little thing.
@nathancooperjones this is unfortunately less of a "bug" and more an intended but unexpected consequence of the way the streamlit execution model and widget system works. Any time you change...
@nathancooperjones hmm, I think that might be a bit overkill. This should be what you want ```python import streamlit as st # set up some dummy session state variables st.session_state.setdefault("options",...
Right, the "key" here is that you give the widget a "key" argument (pun intended) so you can extract the selected value from within the update_options callback. Otherwise that variable...
I know @sfc-gh-jcarroll has been thinking about making this easier -- it's likely something that will get worked on but I don't know what the timeline for it is. I...
I think this is similar/duplicate to https://github.com/streamlit/streamlit/issues/7868 which also relies on clicking on a button without first rerunning the app after editing a value in a widget. Edit: also https://github.com/streamlit/streamlit/issues/7862...
@ricmatsui Interesting. I will revise my previous statement: 1. Backend receives the rerun request for "A->B". It starts kicking off a new re-run of your code with the widget value...
Fairly certain this is a duplicate of a ticket I submitted but will look when I get home