动态更改 Kendo MultSelect 的 DataTextField

Changing DataTextField of Kendo MultSelect dynamically

我有一个包含两个值的 Kendo 组合框:Main、Secondary。我还有一个 Kendo mutliselect 链接到数据源。默认情况下,组合框显示 'Main',多 select 显示 'Parent1','Parent2' 即数据源的 'Name' 字段。

如果组合框中的用户 selects 'Secondary',我想将 multiselect 的 dataTextField 动态更改为 Name2,类似地,multiselect当用户从下拉菜单 selects 'Main' 时,应该链接到 'Name' 作为其 dataTextField。

这是Fiddle

HTML

<select id="CategoryOption" style="width: 100px;">
<option>Main</option>
<option>Secondary</option>
</select> <br><br><br><br><br><br>
<select id="MainCategory" style="width: 90%;"></select> 

Java 脚本

createCategoryOption("#CategoryOption");
createMainCategory("#MainCategory", "Name", "ID");
function createCategoryOption(divID1)
{
$(divID1).kendoComboBox({
        change: function (e) {
            SetSelectServicesText();
        }
    });
}
function createMainCategory(usersDiv, textField, valueField) {
 $("#MainCategory").kendoMultiSelect({
    dataSource: [
        { Name: "Parent1", Id: 1, Name2: "Child1" },
        { Name: "Parent2", Id: 2, Name2: "Child2" }
    ],
    dataTextField: textField,
    dataValueField: valueField
});
}
function SetSelectServicesText()
{
        if($("#CategoryOption").data("kendoComboBox").value() == "Main")
        {
            $("#MainCategory").destroy();
        createMainCategory("#MainCategory", "Name", "ID");
        }
        else
        {
            $("#MainCategory").destroy();
        createMainCategory("#MainCategory", "Name2", "ID");
        }
}

外部资源

<link rel="stylesheet" href="http://cdn.kendostatic.com/2015.1.408/styles/kendo.common.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2015.1.408/styles/kendo.rtl.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2015.1.408/styles/kendo.default.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2015.1.408/styles/kendo.dataviz.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2015.1.408/styles/kendo.dataviz.default.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2015.1.408/styles/kendo.mobile.all.min.css">

<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://cdn.kendostatic.com/2015.1.408/js/kendo.all.min.js"></script>

Kendo 小部件通常会在目标元素周围创建一个 wrapper 结构, 不会被 方法 销毁=11=](我认为这是一件坏事)。

所以销毁(或从 DOM 中删除)一个小部件并不是那么简单。看看:

function createMainCategory(usersDiv, textField, valueField, remove) 
{
    var mc = $("#MainCategory");

    if (remove)
    {
        // Destroys the widget
        mc.data("kendoMultiSelect").destroy();

        // Get the widget wrapper element structure
        var p = mc.closest(".k-widget");

        // Detache the #MainCategory from the wrapper structure
        mc = mc.empty().detach();

        // Remove the wrapper structure
        p.remove();

        // Append the #MainCategory to the body again
        $('body').append(mc);
    }

    $("#MainCategory").kendoMultiSelect({
        dataSource: [
            { Name: "Parent1", Id: 1, Name2: "Child1" },
            { Name: "Parent2", Id: 2, Name2: "Child2" }
        ],
        dataTextField: textField,
        dataValueField: valueField
    });
}

如您所见,在删除中阻止它...

  • 使用内置方法销毁小部件destroy()
  • 然后选择包含所有结构的主要包装元素;
  • 在删除它之前,它选择并detaches #MainCategory 包装(detach() 删除但 returns进一步操作元素的参考);
  • 因此,在 #MainCategory 安全的情况下,它 removes 包装器整个结构来自 DOM;
  • 最后再次在 body 上添加 #MainCategory 以用于托管新的小部件。

Fiddle.