コード例 #1
0
 public function __construct($field_name = null, $field_label = null)
 {
     parent::__construct($field_name, $field_label);
     $this->setXtype('numberfield');
     $this->setDecimalSeparator(trlcKwfStatic('decimal separator', '.'));
     $this->setDecimalPrecision(2);
     $this->setInputType('number');
     $this->_floatValidator = new Zend_Validate_Float();
 }
コード例 #2
0
 public function __construct($field_name = null, $field_label = null)
 {
     parent::__construct($field_name, $field_label);
     $this->setVtype('email');
 }
コード例 #3
0
 public function __construct($field_name = null, $field_label = null)
 {
     parent::__construct($field_name, $field_label);
     $this->setXtype('textarea');
 }
コード例 #4
0
 public function __construct($field_name = null, $field_label = null)
 {
     parent::__construct($field_name, $field_label);
     $this->setInputType('password');
 }