예제 #1
0
파일: Price.php 프로젝트: natxetee/magento2
 protected function _construct()
 {
     parent::_construct();
     $this->addClass('validate-zero-or-greater');
 }
예제 #2
0
 /**
  * Validation classes for weight field which corresponds to DECIMAL(12,4) SQL type
  */
 protected function _construct()
 {
     parent::_construct();
     $this->addClass('validate-number validate-zero-or-greater validate-number-range number-range-0-99999999.9999');
 }