-
6 Dec 2012 12:57 AM #1
Unanswered: text is not in textareafield
Unanswered: text is not in textareafield
Hey guys,
i have a problem with a textareafield. My field looks so
textareafield.png
but as soon the user tap it and start to write a long text it looks so
2012-12-06 09.49.49.png
Is there some way to prevent that?
-
6 Dec 2012 1:12 AM #2
Did you specify a height on your field?
-
11 Dec 2012 12:11 AM #3
yes i'm specify a height
the code for the event focus and blur looks so
Code:focus: function(){ var arrowUpButton = Ext.getCmp('arrowUpButton'); arrowUpButton.hide(true); this.setHeight(135); }, blur: function(){ var arrowUpButton = Ext.getCmp('arrowUpButton'); arrowUpButton.setHidden(false); this.setHeight(25); }
-
11 Dec 2012 12:25 AM #4
Maybe you should also set maxRows to 5 or 6.


Reply With Quote