Exemple #1
0
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.data.Node", null);
     $validProps = array("pathSeparator");
     $this->addValidConfigProperties($validProps);
 }
Exemple #2
0
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.data.Store", null);
     $validProps = array("autoLoad", "baseParams", "data", "proxy", "pruneModifiedRecords", "reader", "remoteSort", "sortInfo", "storeId", "url");
     $this->addValidConfigProperties($validProps);
 }
 public function __construct()
 {
     parent::__construct();
     //$this->setExtClassInfo("Ext.tree.AbstractSelectionModel", null);
 }
Exemple #4
0
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.grid.GridView", false);
     $validProps = array("autoFill", "emptyText", "enableRowBody", "forceFit");
     $this->addValidConfigProperties($validProps);
 }
Exemple #5
0
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.tree.TreeLoader", null);
     $validProps = array("baseAttrs", "baseParams", "clearOnLoad", "dataUrl", "preloadChildren", "requestMethod", "uiProviders", "url");
     $this->addValidConfigProperties($validProps);
 }
Exemple #6
0
 /**
  */
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.data.Connection", null);
     $validProps = array("autoAbort", "defaultHeaders", "disableCaching", "method", "timeout", "url");
     $this->addValidConfigProperties($validProps);
 }
Exemple #7
0
 public function __construct($config = null)
 {
     parent::__construct($config);
     $this->setExtClassInfo("Ext.ux.grid.GridFilters", null);
     $this->_filters = new PhpExt_Grid_IFilterCollection();
 }
Exemple #8
0
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.grid.ColumnModel", null);
     $this->_columns = new PhpExt_Grid_IColumnCollection();
 }
Exemple #9
0
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.Component", "component");
     $validProps = array("allowDomMove", "applyTo", "autoShow", "cls", "ctCls", "disabledClass", "el", "hideMode", "hideParent", "id", "plugins", "renderTo", "style", "xtype");
     $this->addValidConfigProperties($validProps);
     // TODO: Implement PluginCollection
     $this->_plugins = new PhpExt_ObjectCollection();
     $this->setExtConfigProperty("plugins", $this->_plugins);
 }
Exemple #10
0
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.menu.Menu", null);
     $validProps = array("activeClass", "canActivate", "handler", "hideDelay", "hideOnClick", "scope", "items");
     $this->addValidConfigProperties($validProps);
     $this->_items = new PhpExt_Menu_BaseItemCollection();
     $this->setExtConfigProperty('items', $this->_items);
 }
Exemple #11
0
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.Element", null);
     $validProps = array();
     $this->addValidConfigProperties($validProps);
 }
Exemple #12
0
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.data.DataProxy", null);
 }