What I’m trying to do:
I am loading a textarea from a dictionary,each textarea is in a repeating panel…similar to the blog post example/tutorial
What I’ve tried and what’s not working:
Nothing abnormal when adding the text. However, when initializing using data binding, it seems to expand to the max. I am having to page down 4-5 times to get to the next textbox in the repeating panel. I have not encountered this behavior anytime before. Is this a bug?
If you add something to the textarea, it displays normally at first. If you refresh and come back, the texarea box is now fully expanded. Also, putting the cursor in the textarea and arrow-down seems to restore the textarea back to size, for the current session.
As a temporary work around you can add a show event to the TextArea that isn’t correctly auto expanding with the following code:
def message_content1_show(self, **event_args):
"""This method is called when the text area is shown on the screen"""
self.message_content1.auto_expand = True
Which version of Chrome are you using? (Windows yes?) (Works for me on Mac M1 - Safari, Chrome and FireFox)
Have you tried a hard refresh? - (it might be loading a cached version)
Can you try a different browser?
What about running the app in the IDE do you get the same problem?