合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
### 方法 滑块控件实例: ```php $range = $dynamicControl->range(); ``` 设置单元格最小宽度: ```php $instance->minWidth(100); ``` 设置最小值 (int):`默认 0` ```php $range->min(1); ``` 设置最大值 (int):`默认 100` ```php $range->max(50); ``` 设置步数 (int):`默认 1` ```php $range->step(2); ``` 设置控件标签: ```php $range->label('单选'); ``` 设置默认值: ```php $range->defaultValue('yes'); ``` 设置为必填: ```php $range->required(true); ``` 设置注释文本: ```php $range->comment('这里是一个注释文本'); ``` 设置ui类: ```php $range->uiClass(['f13']); ``` 设置style样式: ```php $range->style(); ``` 设置html属性: ```php $range->attribute(); ```