Update of /cvsroot/qooxdoo/qooxdoo/source/script/widgets
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11479/source/script/widgets
Modified Files:
Tag: renderer
QxTextArea.js QxTextField.js
Log Message:
Improved grid layout and depending widgets, changed usage of alowStretchX and allowStretchY inside the grid layout, modified appearance to fix some bugs through the new behaviour
Index: QxTextField.js
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxTextField.js,v
retrieving revision 1.5.2.41
retrieving revision 1.5.2.42
diff -u -d -r1.5.2.41 -r1.5.2.42
--- QxTextField.js 24 Jan 2006 16:48:55 -0000 1.5.2.41
+++ QxTextField.js 26 Jan 2006 08:54:44 -0000 1.5.2.42
@@ -204,7 +204,7 @@
};
proto._computePreferredInnerHeight = function() {
- return 14;
+ return 15;
};
Index: QxTextArea.js
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxTextArea.js,v
retrieving revision 1.1.2.17
retrieving revision 1.1.2.18
diff -u -d -r1.1.2.17 -r1.1.2.18
--- QxTextArea.js 16 Jan 2006 16:11:57 -0000 1.1.2.17
+++ QxTextArea.js 26 Jan 2006 08:54:44 -0000 1.1.2.18
@@ -29,10 +29,10 @@
************************************************************************ */
-function QxTextArea(sText)
+function QxTextArea(vValue)
{
- QxTextField.call(this, sText);
-
+ QxTextField.call(this, vValue);
+
this.setTagName("textarea");
this.removeHtmlProperty("type");
};
@@ -55,3 +55,7 @@
return this.setHtmlProperty("wrap", propValue ? "soft" : "off");
};
};
+
+proto._computePreferredInnerHeight = function() {
+ return 60;
+};
|