带有自定义下拉列的KendoUI网格传递整个对象而不是ID

问题描述 投票:3回答:1

我在Angular / Breeze中使用Kendo UI。我有一个可编辑的网格,其中一列是下拉菜单。一切正常,直到进行保存。问题是我的odata电话正在等待:

Id(guid), Name, Description, CategoryId(guid)

当下拉列表更改时,它会触发保存命令并像这样发送回去:

Id(guid), Name, Description, Category(categoryId, Name, Desc)

我在哪里以及如何使网格仅发回`categoryId而不发回整个类别对象?

    vm.columns = [
        { field: 'name', title: 'name' },
        { field: 'desc', title: 'description' },
        {
            field: 'categoryId',
            title: 'group',
            template: getCategory,
            editor: categoryDropDown
        }
    ];

    function categoryDropDown(container, options) {
        $('<input data-text-field="categoryName" data-value-field="categoryId" data-bind="value:' + options.field + '"/>')
            .appendTo(container)
            .kendoDropDownList({
                dataTextField: "categoryName",
                dataValueField: "categoryId",
                dataSource: vm.categories
            });
    }

    function getCategory(item) {
        for (var i = 0, length = vm.category; i < length; i++) {
            console.log(vm.categories[i].categoryId);
            if (vm.categories[i].categoryId === item.categoryId) {
                return vm.categories[i].categoryName;
            }
        }
        return '';
    }

这是主数据源的架构:

schema: {
    model: {
       id: 'Id',
       fields: {
         categoryName: { editable: true },
         categoryDesc: { editable: true },
         categoryId: { editable: true }
       }
    }
}
angularjs kendo-ui kendo-grid odata breeze
1个回答
6
投票

valuePrimitive是丢失的键

    function categoryDropDown(container, options) {
       $('<input data-text-field="categoryName" data-value-field="categoryId" data-bind="value:' + options.field + '"/>')
           .appendTo(container)
           .kendoDropDownList({
               dataTextField: "categoryName",
               dataValueField: "categoryId",
               dataSource: vm.categories,
               valuePrimitive: true
           });
    }
© www.soinside.com 2019 - 2024. All rights reserved.