コード例 #1
0
ファイル: Tree.php プロジェクト: pablius/oob-n1
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.data.Node", null);
     $validProps = array("pathSeparator");
     $this->addValidConfigProperties($validProps);
 }
コード例 #2
0
ファイル: GridFilters.php プロジェクト: pablius/oob-n1
 protected function getConfigParams($lazy = false)
 {
     $params = parent::getConfigParams($lazy);
     if (count($this->_filters->getCount()) > 0) {
         $params[] = $this->_filters->getJavascript();
     }
     return $params;
 }
コード例 #3
0
ファイル: Store.php プロジェクト: pablius/oob-n1
 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);
 }
コード例 #4
0
 public function __construct()
 {
     parent::__construct();
     //$this->setExtClassInfo("Ext.tree.AbstractSelectionModel", null);
 }
コード例 #5
0
ファイル: GridView.php プロジェクト: beodob/php-ext
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.grid.GridView", false);
     $validProps = array("autoFill", "emptyText", "enableRowBody", "forceFit");
     $this->addValidConfigProperties($validProps);
 }
コード例 #6
0
ファイル: TreeLoader.php プロジェクト: pablius/oob-n1
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.tree.TreeLoader", null);
     $validProps = array("baseAttrs", "baseParams", "clearOnLoad", "dataUrl", "preloadChildren", "requestMethod", "uiProviders", "url");
     $this->addValidConfigProperties($validProps);
 }
コード例 #7
0
ファイル: Connection.php プロジェクト: beodob/php-ext
 /**
  */
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.data.Connection", null);
     $validProps = array("autoAbort", "defaultHeaders", "disableCaching", "method", "timeout", "url");
     $this->addValidConfigProperties($validProps);
 }
コード例 #8
0
ファイル: Component.php プロジェクト: beodob/php-ext
 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;
 }
コード例 #9
0
ファイル: Menu.php プロジェクト: pablius/oob-n1
 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);
 }
コード例 #10
0
ファイル: Element.php プロジェクト: pablius/oob-n1
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.Element", null);
     $validProps = array();
     $this->addValidConfigProperties($validProps);
 }
コード例 #11
0
ファイル: DataProxy.php プロジェクト: beodob/php-ext
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.data.DataProxy", null);
 }