We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
var jsonArray = [ { "id": 1, // value值 "disabled": false, // 是否禁选 "groupName": "分组名", "groupId": 3,//分组ID "selected": false, // 是否选中 "name": "Betty Deborah Jackson" // 名称 }, { "id": 2, "disabled": false, "groupName": "分组名", "groupId": 2, "selected": false, "name": "Jason Barbara Clark" } ] $('#dropdown-mul').dropdown({ data: jsonArray, multipleMode: 'label', searchable: false, choice: function () { console.log(arguments, this); } });
The text was updated successfully, but these errors were encountered:
fix bug #8
345c1ec
315acb1
f8d339c
@wjl0814 已修复,请下载最新版本 v1.1.7
Sorry, something went wrong.
No branches or pull requests
var jsonArray = [
{
"id": 1, // value值
"disabled": false, // 是否禁选
"groupName": "分组名",
"groupId": 3,//分组ID
"selected": false, // 是否选中
"name": "Betty Deborah Jackson" // 名称
},
{
"id": 2,
"disabled": false,
"groupName": "分组名",
"groupId": 2,
"selected": false,
"name": "Jason Barbara Clark"
}
]
$('#dropdown-mul').dropdown({
data: jsonArray,
multipleMode: 'label',
searchable: false,
choice: function () {
console.log(arguments, this);
}
});
The text was updated successfully, but these errors were encountered: