मैं प्लेसहोल्डर का चयन 2 द्वारा मूल्य रीसेट पर कैसे करता हूं। मेरे उदाहरण में, यदि स्थान या ग्रेड चयनित बॉक्स क्लिक किए गए हैं और मेरे चयन 2 का मान है, तो चयन 2 के मान को डिफ़ॉल्ट धारक को रीसेट और दिखाना चाहिए। यह स्क्रिप्ट मान रीसेट कर रहा है, लेकिन प्लेसहोल्डर नहीं दिखाएगा
$("#locations, #grade ").change(function() {
$('#e6').select2('data', {
placeholder: "Studiengang wählen",
id: null,
text: ''
});
});
$("#e6").select2({
placeholder: "Studiengang wählen",
width: 'resolve',
id: function(e) {
return e.subject;
},
minimumInputLength: 2,
ajax: {
url: "index.php?option=com_unis&task=search.locator&tmpl=component&<?php echo JSession::getFormToken() ?>=1",
dataType: 'json',
data: function(term, page) {
return {
q: term, // search term
g: $('#grade option:selected').val(),
o: $('#locations option:selected').val()
};
},
results: function(data, page) {
return {
results: data
};
}
},
formatResult: subjectFormatResult,
formatSelection: subjectFormatSelection,
dropdownCssClass: "bigdrop",
escapeMarkup: function(m) {
return m;
}
});