jQuery Chosen - update select list without losing selections(jQuery Chosen - 更新选择列表而不丢失选择)
问题描述
我正在尝试使用 jQuery 插件Chosen"
I'm trying to use jQuery plugin "Chosen"
(http://harvesthq.github.com/chosen/ 和 https://github.com/harvesthq/chosen)
在我的项目中.
我想要实现的是基于用户选择的更新列表(ajax
调用(tree based structure
))
What I'm trying to achieve is update list basing on user selection (ajax
call (tree based structure
))
这不是更大的问题,因为我可以使用 .chosen().change(function())
并删除所有未使用的选择项,然后 .append 新的.
This is no bigger problem, because i can use .chosen().change(function())
and remove all unused select items and then .append new ones.
然后我可以使用 .trigger("liszt:updated")
更新列表,但不幸的是所有选择都被删除了..
Then I can use .trigger("liszt:updated")
to update list, but unfortunately all selections are deleted..
有谁知道如何在不丢失所选数据的情况下更新所选列表?
Does anyone know a way how to update chosen list without loosing selected data?
理论上,我可以手动删除所有选择的生成
In theory I can manually remove all chosen generated
推荐答案
如果您保存选定的项目,这应该相当简单.例如:
This should be fairly simply if you save the items selected. For example:
<select data-placeholder="Choose a country..." style="width:350px;" multiple="true" class="chosen-select">
$(".chosen-select").chosen();
现在,在更新所选项目之前,请确保您保存所选项目,如下所示:
Now, before updating the chosen, make sure you save the items selected like this:
var chosenSelectedItems = $(".chosen-select").val(); // this gets you the select value data
// Update the select items
$('.chosen-select').trigger('liszt:updated');
$(".chosen-select").val(chosenSelectedItems);
这应该可以在更改之前重置原始值.
This should be able to reset the original values before the change.
这篇关于jQuery Chosen - 更新选择列表而不丢失选择的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:jQuery Chosen - 更新选择列表而不丢失选择
- 为什么悬停在委托事件处理程序中不起作用? 2022-01-01
- 如何调试 CSS/Javascript 悬停问题 2022-01-01
- 在不使用循环的情况下查找数字数组中的一项 2022-01-01
- 为什么我的页面无法在 Github 上加载? 2022-01-01
- 如何向 ipc 渲染器发送添加回调 2022-01-01
- 我不能使用 json 使用 react 向我的 web api 发出 Post 请求 2022-01-01
- 是否可以将标志传递给 Gulp 以使其以不同的方式 2022-01-01
- 从原点悬停时触发 translateY() 2022-01-01
- 使用 iframe URL 的 jQuery UI 对话框 2022-01-01
- 如何显示带有换行符的文本标签? 2022-01-01