dnadesign/silverstripe-advanceddropdowns
最新稳定版本:2.0.3
Composer 安装命令:
composer require dnadesign/silverstripe-advanceddropdowns
包简介
DropdownField and GroupedDropdownField that allows the use of data-attributes on each option tag
README 文档
README
Introduction
DropdownField and GroupedDropdownField that allows the use of data-attributes on each option tag. Very useful for third party dropdown styling such as (http://silviomoreto.github.io/bootstrap-select/) which rely on data-attributes on options.
Please note this module is a work in progress and has no tests.
AdvandedDropdownField
Set up your AdvandedDropdownField's as follows:
new AdvancedDropdownField('AdvancedDropdown', 'DropdownField with option attributes', array( 'value1' => array( 'Title' => 'Option 1', 'Attributes' => array( 'data-myattribute' => 'This is an attribute value' ) ), 'value2' => array( 'Title' => 'Option 2', 'Attributes' => array( 'data-myattribute' => 'This is an attribute value' 'data-myattribute2' => 'This is a second attribute value' ) ) ));
AdvandedGroupedDropdownField
Set up your AdvandedGroupedDropdownField's as follows:
new AdvancedGroupedDropdownField('AdvancedGroupedDropdown', 'Advanced grouped dropdown', array( 'value1' => array( 'Title' => 'Ungrouped option', 'Attributes' => array( 'data-myattribute' => 'This is an attribute value' ) ), 'Option group 1' => array( 'value2' => array( 'Title' => 'Option 2', 'Attributes' => array( 'data-myattribute' => 'This is an attribute value' ) ), 'value3' => array( 'Title' => 'Option 3', 'Attributes' => array( 'data-myattribute' => 'This is an attribute value' ) ) ), 'Option group 2' => array( 'value4' => array( 'Title' => 'Option 4', 'Attributes' => array( 'data-myattribute' => 'This is an attribute value' ) ), 'value5' => array( 'Title' => 'Option 5', 'Attributes' => array( 'data-myattribute' => 'This is an attribute value' 'data-myattribute2' => 'This is a second attribute value' ) ) ) ));
Maintainer Contact
* James ayers (james.ayers@dna.co.nz)
Requirements
- SilverStripe 3.x
License
BSD-3-Clause. See LICENSE.
统计信息
- 总下载量: 17.36k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 17
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2014-04-11