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
i have to call the update function for paper-autogrow-textarea when rows="1". Otherwise for rows > 1 i don't need to call the update function. Can you tell me why?
I use polymer with GWT.
Here is my XML-Code
<sectionstyle="padding: 20px; width: 900px;"><divcenter="" horizontal="" layout=""><gwt:Labeltext="Autogrowing textarea - no row limit - initial rows = 1" width="300px"/><paper-input-decoratorlabel="this is a placeholder" layout="" vertical=""><paper-autogrow-textareaui:field="autogrowTextarea"><textarea/></paper-autogrow-textarea></paper-input-decorator></div></section>
This won't work without calling update in my Java-Class
Hi,
i have to call the update function for paper-autogrow-textarea when rows="1". Otherwise for rows > 1 i don't need to call the update function. Can you tell me why?
I use polymer with GWT.
Here is my XML-Code
This won't work without calling update in my Java-Class
The height is not set without calling update.
Thanks