jQuery Chosen - 更新选择列表而不丢失选择

jQuery Chosen - update select list without losing selections(jQuery Chosen - 更新选择列表而不丢失选择)
本文介绍了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?

理论上,我可以手动删除所有选择的生成

  • 元素,然后用新元素填充,但是获取 SELECT "value" 数据时会出现问题.

    In theory I can manually remove all chosen generated

  • elements and then populate with new ones, but then is a problem with getting SELECT "value" data.

    推荐答案

    如果您保存选定的项目,这应该相当简单.例如:

    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 - 更新选择列表而不丢失选择的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

    本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!
  • 相关文档推荐

    Google apps script get range of bytes from binary file(谷歌应用程序脚本从二进制文件中获取字节范围)
    Sending Multiple attachments with Google Script from Google Drive(使用 Google 脚本从 Google Drive 发送多个附件)
    Distributing Google Apps Scripts for Sheets in your company network(在您的公司网络中分发适用于表格的 Google Apps 脚本)
    Upload file to my google drive from anyone using javascript(使用 javascript 将文件从任何人上传到我的谷歌驱动器)
    quot;Shared Drivequot; support in Google Apps Script(“共享驱动器Google Apps 脚本中的支持)
    Angular 2+ HTTP POST and GDrive API. Resumable file upload with name(Angular 2+ HTTP POST 和 GDrive API.带名称的可恢复文件上传)