yadcf "select_type_options" 对 Chosen 无效
yadcf "select_type_options" not effective for Chosen
我正在使用 yadcf 在单独的大容器中使用 "select_type":"chosen"
创建过滤器。由于 chosen-Dropdown 呈现得太小,我添加了 "select_type_options":"width:200px;"
但这没有任何效果。该信息是否需要以不同的格式提供 - 还是我遇到了错误?
这不是一个错误,select_type_options
属性 类型是一个对象,所以你应该给它一个对象值 key/value
修复您的代码
"select_type_options":"width:200px;"
进入
select_type_options: { width: '200px;' }
参见文档:
* select_type_options
Required: false
Type: Object
Default value: {}
Description: This parameter will be passed "as is" to the Chosen/Select2 plugin constructor
您还可以在 showcase 代码段中找到它
我正在使用 yadcf 在单独的大容器中使用 "select_type":"chosen"
创建过滤器。由于 chosen-Dropdown 呈现得太小,我添加了 "select_type_options":"width:200px;"
但这没有任何效果。该信息是否需要以不同的格式提供 - 还是我遇到了错误?
这不是一个错误,select_type_options
属性 类型是一个对象,所以你应该给它一个对象值 key/value
修复您的代码
"select_type_options":"width:200px;"
进入
select_type_options: { width: '200px;' }
参见文档:
* select_type_options
Required: false
Type: Object
Default value: {}
Description: This parameter will be passed "as is" to the Chosen/Select2 plugin constructor
您还可以在 showcase 代码段中找到它