admin管理员组文章数量:1346196
I am using Chosen plugin for Select box. I am replacing these both boxes on an ajax request. I want the check box to be pre filled when it es. I tried something and it fails. I read the documentation of this and unable to acplish. Here is what i have tried after reading the docs. Once ajax response came i am doing these things.
var city = $('#hdnCity').val();
//**Ajax Request Goes and the response is here**//
$('#searchParams').html(responseText);
var value = $("#favCities1 option:contains("+city+")").attr('selected', 'selected');
$("#chzn-select").val(value).trigger("liszt:updated");
I am unable to acplish this. Helpers are appreciable. Thankyou in Advance!!!
I am using Chosen plugin for Select box. I am replacing these both boxes on an ajax request. I want the check box to be pre filled when it es. I tried something and it fails. I read the documentation of this and unable to acplish. Here is what i have tried after reading the docs. Once ajax response came i am doing these things.
var city = $('#hdnCity').val();
//**Ajax Request Goes and the response is here**//
$('#searchParams').html(responseText);
var value = $("#favCities1 option:contains("+city+")").attr('selected', 'selected');
$("#chzn-select").val(value).trigger("liszt:updated");
I am unable to acplish this. Helpers are appreciable. Thankyou in Advance!!!
Share Improve this question edited Mar 28, 2013 at 19:36 j0k 22.8k28 gold badges81 silver badges90 bronze badges asked Mar 27, 2013 at 4:47 Vignesh GopalakrishnanVignesh Gopalakrishnan 1,9929 gold badges32 silver badges53 bronze badges 1- can you share the ajax request also – Arun P Johny Commented Mar 27, 2013 at 5:00
3 Answers
Reset to default 4The problem is with the last line: $("#chzn-select").val(value).trigger("liszt:updated");
You will have to separate because $("#chzn-select").val(value)
only returns jQuery object, but not the <select>
element. Therefore, Chosen can't pick up the liszt:updated
event since it's only listening to the <select>
.
So you will have to do this:
$("#chzn-select").val(city);
$("#chzn-select").trigger("liszt:updated");
See working example: http://jsfiddle/amyamy86/qQCw8/
In the absence of any further information, I guess it is a problem with how you are handling the ajax reponse
Updation of searchParams
should happen within the ajax success callback
var city = $('#hdnCity').val();
$.ajax({
url: '',
...
}).done(function(responseText){
//**Ajax Request Goes and the response is here**//
$('#searchParams').html(responseText);
var value = $("#favCities1 option:contains("+city+")").attr('selected', 'selected').val();
$("#chzn-select").val(value).trigger("liszt:updated");
})
Chrome requires that you fire a different event now, http://harvesthq.github.io/chosen/. Without firing this event, the multiple select box wont get updated.
$('#chzn-select').trigger('chosen:updated')
You can see it in action with this jsfiddle, http://jsfiddle/LjtVa/
本文标签: javascriptHow to bring a dropdown (Chosen) with selected value on page loadsStack Overflow
版权声明:本文标题:javascript - How to bring a dropdown (Chosen) with selected value on page loads.? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743824272a2545349.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论