Ejemplo n.º 1
0
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.data.Node", null);
     $validProps = array("pathSeparator");
     $this->addValidConfigProperties($validProps);
 }
Ejemplo n.º 2
0
 protected function getConfigParams($lazy = false)
 {
     $params = parent::getConfigParams($lazy);
     if (count($this->_filters->getCount()) > 0) {
         $params[] = $this->_filters->getJavascript();
     }
     return $params;
 }
Ejemplo n.º 3
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);
 }
Ejemplo n.º 4
0
 public function __construct()
 {
     parent::__construct();
     //$this->setExtClassInfo("Ext.tree.AbstractSelectionModel", null);
 }
Ejemplo n.º 5
0
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.grid.GridView", false);
     $validProps = array("autoFill", "emptyText", "enableRowBody", "forceFit");
     $this->addValidConfigProperties($validProps);
 }
Ejemplo n.º 6
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);
 }
Ejemplo n.º 7
0
 /**
  */
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.data.Connection", null);
     $validProps = array("autoAbort", "defaultHeaders", "disableCaching", "method", "timeout", "url");
     $this->addValidConfigProperties($validProps);
 }
Ejemplo n.º 8
0
 protected function getConfigParams($lazy = false)
 {
     if ($this->_plugins->getCount() == 0) {
         $this->setExtConfigProperty("plugins", null);
     }
     $params = parent::getConfigParams($lazy);
     if ($lazy && $this->_xType != null) {
         $params[] = $this->paramToString("xtype", $this->_xType);
     }
     if ($this->_layoutData !== null) {
         $layoutParams = $this->_layoutData->getConfigParams();
         $params = array_merge($params, $layoutParams);
     }
     return $params;
 }
Ejemplo n.º 9
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);
 }
Ejemplo n.º 10
0
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.Element", null);
     $validProps = array();
     $this->addValidConfigProperties($validProps);
 }
Ejemplo n.º 11
0
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.data.DataProxy", null);
 }