0
Joomla!-Forms中的數字輸入是否有任何step屬性? 的DOC現場爲這一輸入型doesn't包含任何答案了 enter link description hereStep-attribute JForm字段類型編號
我需要十進制數步0.01
Joomla!-Forms中的數字輸入是否有任何step屬性? 的DOC現場爲這一輸入型doesn't包含任何答案了 enter link description hereStep-attribute JForm字段類型編號
我需要十進制數步0.01
你應該檢查文件/庫/的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;