Radio.php 925 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * FormBuilder表单生成器
  4. * Author: xaboy
  5. * Github: https://github.com/xaboy/form-builder
  6. */
  7. /**
  8. * InputNumber 数字输入框组件方法说明
  9. * 方法 返回值 方法名(参数) 注释
  10. * @method $this max(float $max) 最大值
  11. * @method $this min(float $min) 最小值
  12. * @method $this step(float $step) 每次改变的步伐,可以是小数
  13. * @method $this size(String $size) 输入框尺寸,可选值为large、small、default或者不填
  14. * @method $this disabled(Boolean $bool) 设置禁用状态,默认为false
  15. * @method $this placeholder(String $placeholder) 占位文本
  16. * @method $this readonly(Boolean $bool) 是否设置为只读,默认为false
  17. * @method $this editable(Boolean $bool) 是否可编辑,默认为true
  18. * @method $this precision(int $precision) 数值精度
  19. * @method $this value($value) 设置value
  20. */
  21. $number = \FormBuilder\Form::number('sort','排序',1);