2015-05-25 77 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;