Roo/Document.js
authorAlan Knowles <alan@akbkhome.com>
Wed, 23 Jun 2010 05:49:41 +0000 (13:49 +0800)
committerAlan Knowles <alan@akbkhome.com>
Wed, 23 Jun 2010 05:49:41 +0000 (13:49 +0800)
Roo/Document.js

index 2a2a624..81575b2 100644 (file)
@@ -54,12 +54,31 @@ Roo.XComponent = function(cfg) {
     
 }
 Roo.extend(Roo.XComponent, Roo.util.Observable {
+    el  : false,
     panel : false,
     layout : false,
+    
+     /**
+     * @cfg {Function|boolean} disabled
+     * If this module is disabled by some rule, return true from the funtion
+     */
     disabled : false,
+    /**
+     * @cfg {String} parent 
+     * Name of parent element which it get xtype added to..
+     */
     parent: false,
-    order : false,
+    /**
+     * @cfg {String} order
+     * Used to set the order in which elements are created (usefull for multiple tabs)
+     */
     
+    order : false,
+    /**
+     * @cfg {String} name
+     * String to display while loading.
+     */
+    name : false,
 });
 
 Roo.apply(Roo.XComponent,