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.10.2 Bokeh 2.2.3
The Controls section of the Ace widget shows the disabled parameter. But if I disable it I can still enter new text.
Ace
disabled
I.e. disabled does not work.
from panel import widgets as pnw py_code = """import sys""" component = pnw.Ace( value=py_code, sizing_mode="stretch_width", language="python", theme="tomorrow_night", disabled=True, height=300, ) component.servable()
The text was updated successfully, but these errors were encountered:
Thanks! Please make the issue title as specific as possible.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Panel 0.10.2
Bokeh 2.2.3
Description of expected behavior and the observed behavior
The Controls section of the
Ace
widget shows thedisabled
parameter. But if I disable it I can still enter new text.I.e.
disabled
does not work.Complete, minimal, self-contained example code that reproduces the issue
The text was updated successfully, but these errors were encountered: