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();
 }
 public function __construct($field_name = null, $field_label = null)
 {
     parent::__construct($field_name, $field_label);
     $this->setVtype('email');
 }
 public function __construct($field_name = null, $field_label = null)
 {
     parent::__construct($field_name, $field_label);
     $this->setXtype('textarea');
 }
 public function __construct($field_name = null, $field_label = null)
 {
     parent::__construct($field_name, $field_label);
     $this->setInputType('password');
 }