admin管理员组文章数量:1343311
I want to add dynamic options to a SweetAlert2 input type select that looks like this:
swal({
title: 'Select Ukraine',
input: 'select',
inputOptions: {
'SRB': 'Serbia',
'UKR': 'Ukraine',
'HRV': 'Croatia'
},
inputPlaceholder: 'Select country',
showCancelButton: true,
inputValidator: function(value) {
return new Promise(function(resolve, reject) {
if (value === 'UKR') {
resolve();
} else {
reject('You need to select Ukraine :)');
}
});
}
}).then(function(result) {
swal({
type: 'success',
html: 'You selected: ' + result
});
})
Instead of those 3 countries I want to add my own options which are saved in an object. How can I do that using javascript?
I want to add dynamic options to a SweetAlert2 input type select that looks like this:
swal({
title: 'Select Ukraine',
input: 'select',
inputOptions: {
'SRB': 'Serbia',
'UKR': 'Ukraine',
'HRV': 'Croatia'
},
inputPlaceholder: 'Select country',
showCancelButton: true,
inputValidator: function(value) {
return new Promise(function(resolve, reject) {
if (value === 'UKR') {
resolve();
} else {
reject('You need to select Ukraine :)');
}
});
}
}).then(function(result) {
swal({
type: 'success',
html: 'You selected: ' + result
});
})
Instead of those 3 countries I want to add my own options which are saved in an object. How can I do that using javascript?
Share Improve this question edited Jan 29, 2018 at 22:22 Limon Monte 54.5k49 gold badges189 silver badges220 bronze badges asked Jun 29, 2016 at 9:24 Andrei ZamfirAndrei Zamfir 1431 gold badge3 silver badges11 bronze badges 6- what do you mean by "dynamic options"? – Limon Monte Commented Jun 29, 2016 at 9:34
-
@Andrei Zamfir: "my own options which are saved in an object" is equivalent to
var savedObject = {'value_1': 'name_1', 'value_2': 'name_2', 'value_3': 'name_3'}
, isn't it ? – Trung Le Nguyen Nhat Commented Jun 29, 2016 at 9:40 - yup, that's what I mean – Andrei Zamfir Commented Jun 29, 2016 at 9:50
-
@Andrei Zamfir: so you can replace
{'SRB': 'Serbia', 'UKR': 'Ukraine', 'HRV': 'Croatia'}
tosavedObject
and this would works – Trung Le Nguyen Nhat Commented Jun 30, 2016 at 10:10 - 1 @Andrei Zamfir: you're wele, have a good day! – Trung Le Nguyen Nhat Commented Jul 2, 2016 at 1:49
2 Answers
Reset to default 7You Could possibly try building up the options object like this.
function linkThing() {
//this i assume would be loaded via ajax or something?
var myArrayOfThings = [
{ id: 1, name: 'Item 1' },
{ id: 2, name: 'Item 2' },
{ id: 3, name: 'Item 3' }
];
var options = {};
$.map(myArrayOfThings,
function(o) {
options[o.id] = o.name;
});
swal({
title: 'My Title',
text: 'Please select an option',
input: 'select',
inputOptions: options,
showCancelButton: true,
animation: 'slide-from-top',
inputPlaceholder: 'Please select'
}).then(function (inputValue) {
if (inputValue) {
console.log(inputValue);
}
});
};
First u need create a model example:
{
"VALUE" : "TEXT",
"VALUE-2" : "TEXT-2",
"VALUE-3" : "TEXT-3"
}
For after get options as:
<option value="VALUE">TEXT</option>
then, u need create model as:
var model = [];
array.foreach(element => {
model[element.idObject] = element.textObject;
});
swal({
title: 'Title',
text: 'Description',
input: 'select',
inputOptions: model,
showCancelButton: true,
inputPlaceholder: 'Select a option'
}).then(function (inputValue) {
if (inputValue) {
console.log(inputValue);
}
});
本文标签: javascriptSweetAlert2 add dynamic options to select inputStack Overflow
版权声明:本文标题:javascript - SweetAlert2 add dynamic options to select input - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743698587a2523926.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论