-
Notifications
You must be signed in to change notification settings - Fork 597
fast-text-area row, height, minlength and maxlength not working #3874
New issue
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
Comments
This looks related to #3869 though the issue is more clearcut. I'd expect this to also apply to |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
I think we should close this given #5853, but I wanted to put together an example of how this could be accomplished using the design tokens. It's not perfect, but it is an approach that can support the concept and tends to work with smaller number sets... Attaching a stackblitz where I've extended TextField and added a custom change handler for the maxlength attribute. I've created a design token and I am assigning that when maxlength changes. The tricky bit here is that while we can get close using I think you could likely do similar with other attributes as well. |
I'm trying to wrap the fast-text-area into Bokeh extensions for use in Python and data science. Right now I'm working on the
fast-text-area
and there are some bugs (I believe).I cannot get the following working
A code example
looks like
As you can see I can enter text with a length less than two and the height is fixed. It does not react to rows="6" or the
style="height:400px"
setting.If you inspect the element you will find that the textarea control in the shadow dom has a fixed height.
The text was updated successfully, but these errors were encountered: