We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
panel==0.13.0a38
The panel button.loading=True is not working as expected in deployed app. It works fine in a jupyter notebook though. Check the gif below:
def app(): hint_box = pn.pane.Alert('Ready') submit_button = pn.widgets.Button(name='Submit', width=100) def on_click(event): submit_button.loading = True hint_box.object = 'Loading' hint_box.alert_type = 'warning' time.sleep(5) submit_button.loading = False hint_box.object = f'Clicked {submit_button.clicks} times' hint_box.alert_type = 'primary' submit_button.on_click(on_click) return pn.Column(hint_box, submit_button) app().servable()
No errors thrown
Added above
The text was updated successfully, but these errors were encountered:
Could you try again with 0.13.0a42? I think #3231 should have addressed this.
Sorry, something went wrong.
Thanks @philippjfr this is indeed fixed, sorry for the delayed response.
No branches or pull requests
ALL software version info
panel==0.13.0a38
Description of expected behavior and the observed behavior
The panel button.loading=True is not working as expected in deployed app. It works fine in a jupyter notebook though. Check the gif below:
Complete, minimal, self-contained example code that reproduces the issue
Stack traceback and/or browser JavaScript console output
No errors thrown
Screenshots or screencasts of the bug in action
Added above
The text was updated successfully, but these errors were encountered: