예제 #1
0
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.data.GroupingStore", null);
     $validProps = array("groupField", "groupOnSort", "remoteGroup");
     $this->addValidConfigProperties($validProps);
 }
예제 #2
0
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.data.JsonStore", null);
     $validProps = array("data", "fields", "url", "id", "root", "successProperty", "totalProperty");
     $this->addValidConfigProperties($validProps);
     $this->_fields = new PhpExt_Data_FieldConfigObjectCollection();
     $this->setExtConfigProperty("fields", $this->_fields);
 }
예제 #3
0
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.data.SimpleStore", null);
     $validProps = array("data", "fields", "id");
     $this->addValidConfigProperties($validProps);
     $this->_fields = new PhpExt_Data_FieldConfigObjectCollection();
     $this->setExtConfigProperty("fields", $this->_fields);
 }