Ejemplo n.º 1
0
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.ux.MaskFormattedTextField", "MaskFormattedTextField");
     $validProps = array("mask");
     $this->addValidConfigProperties($validProps);
 }
Ejemplo n.º 2
0
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.form.NumberField", "numberfield");
     $validProps = array("allowDecimals", "allowNegative", "baseChars", "decimalPrecision", "decimalSeparator", "fieldClass", "maxText", "maxValue", "minText", "minValue", "nanText");
     $this->addValidConfigProperties($validProps);
 }
Ejemplo n.º 3
0
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.form.TextArea", "textarea");
     $validProps = array("autoCreate", "growMax", "growMin", "preventScrollbars");
     $this->addValidConfigProperties($validProps);
 }
Ejemplo n.º 4
0
 public function __construct()
 {
     parent::__construct();
     $this->setExtClassInfo("Ext.form.TriggerField", "trigger");
     $validProps = array("autoCreate", "hideTrigger", "triggerClass");
     $this->addValidConfigProperties($validProps);
 }
Ejemplo n.º 5
0
 public function __construct()
 {
     parent::__construct();
     $this->setAutoCreate(new PhpExt_Config_ConfigObject(array('tag' => 'input', 'type' => 'password', 'size' => '20', 'autocomplete' => 'off')));
 }