You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xap-commits@incubator.apache.org by mt...@apache.org on 2006/10/13 00:17:13 UTC

svn commit: r463522 - /incubator/xap/trunk/src/xap/widgets/dojo/TextField.js

Author: mturyn
Date: Thu Oct 12 17:17:12 2006
New Revision: 463522

URL: http://svn.apache.org/viewvc?view=rev&rev=463522
Log:
_isRichText --> isRichText,  getReadOnly() --> isReadOnly()

Modified:
    incubator/xap/trunk/src/xap/widgets/dojo/TextField.js

Modified: incubator/xap/trunk/src/xap/widgets/dojo/TextField.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/widgets/dojo/TextField.js?view=diff&rev=463522&r1=463521&r2=463522
==============================================================================
--- incubator/xap/trunk/src/xap/widgets/dojo/TextField.js (original)
+++ incubator/xap/trunk/src/xap/widgets/dojo/TextField.js Thu Oct 12 17:17:12 2006
@@ -23,7 +23,7 @@
 	templateCssPath: null ,
 	widgetType: "TextField",
 	isContainer: false,
-	_isRichText:false,
+	isRichText:false,
 	
 	//hook for attach event
 	onblur: function(){
@@ -65,7 +65,7 @@
 		 }
 	},
 	
-	getReadOnly: function(){
+	isReadOnly: function(){
 		return this.domNode.readOnly ;
 	}