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 - 更新选择列表而不丢失选择
基础教程推荐
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 动态更新多个选择框 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01