2015-05-25 4 views

ответ

0

Вы должны проверить файл/библиотеки// Joomla формы/поле/номер. php, вы можете видеть, что есть некоторые параметры, которые необходимо передать в поле формы для этой цели:

/** 
* The form field type. 
* 
* @var string 
* @since 3.2 
*/ 
protected $type = 'Number'; 

/** 
* The allowable maximum value of the field. 
* 
* @var float 
* @since 3.2 
*/ 
protected $max = null; 

/** 
* The allowable minimum value of the field. 
* 
* @var float 
* @since 3.2 
*/ 
protected $min = null; 

/** 
* The step by which value of the field increased or decreased. 
* 
* @var float 
* @since 3.2 
*/ 
protected $step = 0;