选择 2 不更新条目
本文关键字:更新 选择 | 更新日期: 2023-09-27 18:37:07
我有一个使用C#,jQuery和Select2 v3.5.2以及Bootstrap 2.3.2的MVC5应用程序。
现在我是 select2 的新手,所以我遇到了一些麻烦。例如,我想要一个包含多个项目的文本框,如标记支持示例所示。
现在,这应该不难,但问题是我需要在对服务器进行 Ajax 调用后,使用 jQuery 在 Bootstrap 模式中动态更新这些值。
这听起来很复杂,但很简单。当用户单击按钮编辑项目时,在向服务器查询有关该项目的信息后,我会显示一个 Bootsrap 模式,其中包含该项目的信息:
//Show Edit Package modal
$("a.btn.btn-default.editPackage").click(function () {
//ask the server for item information
$.ajax({
url: $(this).data('url'),
type: 'get',
cache: false,
success: function (result) {
//this input field belongs to the modal
$(input #SubCategoryId).attr('data-edit-values', '13 - Orange');
$('#myModal').show();
}
});
return false; //prevent browser defualt behavior
});
这是模态(主要是样板代码):
<div class="modal fade" id="@Model.modalId" tabindex="-1" role="dialog" aria-labelledby="@Model.modalId" aria-hidden="true">
<div class="modal-dialog" style="overflow-y: auto; max-height: 80vh;">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="myModalLabel">@Model.modalTitle</h4>
</div>
<div class="modal-body" data-val="@Model.packageId">
<form class="form-horizontal">
<div class="control-group">
<label class="control-label">Select the Function:</label>
<div class="controls">
<input class="select2s" data-edit-values="@Model.functionsString" data-o2f-placeholder="Select Employee Function..." data-o2f-url="@Url.Action("FunctionsMultiple", "Home")" data-val="false" id="SubCategoryId" name="SubCategoryId" multiple="multiple" type="text"/>
</div>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-primary" id="@Model.saveButtonId" data-url="@Model.saveButtonUrl">@Model.saveButtonText</button>
</div>
</div>
</div>
</div>
问题是当我加载弹出窗口时,字段上的值没有加载。
我在javaScript中做错了什么?
要更新任何模式中 select2 字段的值,我意识到我必须使用 select2 中的一个特殊函数来实现效果:$('#fieldId').select2('data', "blablablaMyData");