Esempio n. 1
0
    function __construct($configs = array()){
        parent::__construct($configs);
        $this->extend = 'Ext.chart.Chart';
        $this->object->setValue('listeners',"{render: function(p){},delay: 50}",false);
        $this->constructor = "function(){this.callParent(arguments);this.on({render: function(grid){Ext.data.StoreManager.lookup(this.getStore()).load();}});}";

    }
Esempio n. 2
0
	function __construct($configs = array()){
		parent::__construct($configs);
		$this->extend = 'Ext.data.Store';
		$this->model = static::ModelClass;
	}
Esempio n. 3
0
	function __construct($configs = array()){
		parent::__construct($configs);
		$this->extend = 'Ext.data.Model';
		$this->fields = array();
		$this->validations = array();
	}
Esempio n. 4
0
	function __construct($configs = array()){
		parent::__construct($configs);
		$this->extend = "Desktop.Window";
		$this->object->setValue("createBodyItems",array(),array(get_class($this),"createBodyItems"));
	}