You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some background:
I am trying to disable the Select widget at runtime, and then re-enable it when a function is complete. I am capturing the event of the Select being changed and I don't want that event to fire while this function is executing. When I create the Select in my on_mount method, I give the widget an ID so I can reference it later. This is also the only Select widget in this application.
Here is the issue:
It seems like both query_one and get_widget_by_id are blocking when trying to find my Select widget. I am trying both of these methods and I get the same result (application essentially stalled):
Some background:
I am trying to disable the Select widget at runtime, and then re-enable it when a function is complete. I am capturing the event of the Select being changed and I don't want that event to fire while this function is executing. When I create the Select in my on_mount method, I give the widget an ID so I can reference it later. This is also the only Select widget in this application.
Here is the issue:
It seems like both query_one and get_widget_by_id are blocking when trying to find my Select widget. I am trying both of these methods and I get the same result (application essentially stalled):
It should also be noted that I am creating the select with the following call (perhaps this is the issue):
Other info:
Using either of these methods works with other widgets, just not my case for Select.
The text was updated successfully, but these errors were encountered: