下拉列表无法在Knockout KoGrid中运行

时间:2013-04-09 08:50:19

标签: javascript knockout.js kogrid

我正在尝试使用自定义单元格模板在KoGrid单元格中显示下拉列表,我不知道它为什么不能正常工作。

我有一个使用options, optionsText, optionsValue and optionsCaption的工作下拉列表示例,绑定工作正常。但是,KoGrid中的类似下拉列表不会显示任何元素。我的问题是我错过了什么/做错了什么,我该如何解决这个问题?

链接到jsFiddle:http://jsfiddle.net/AxyWz/6/

HTML:

<p>
    Working drop-down list:
    <select data-bind="options: data, optionsText: 'name', optionsValue: 'id', optionsCaption: '-', value: selectedItemId"></select>
</p>

<p>
    Drop-down list not working in KoGrid:
    <div class="grid" data-bind="koGrid: gridOptions"></div>
</p>

<pre data-bind="text: ko.toJSON($root, null, 2)"></pre>

<script type="text/html" id="template">
    <select data-bind="options: $root.data, optionsText: 'name', optionsValue: 'id', optionsCaption: '-', value: $parent.entity[$data.field]"></select>
</script>

使用Javascript:

function Item(id, name) {
    this.id = ko.observable(id);
    this.name = ko.observable(name);
    this.parentId = ko.observable();
}

function ViewModel() {
    this.selectedItemId = ko.observable();

    this.data = ko.observableArray([
        new Item(1, 'aaa'),
        new Item(2, 'sss'),
        new Item(10, 'xxx'),
        new Item(14, 'zzz')
    ]);

    this.gridOptions = {
        data: this.data,
        canSelectRows: false,
        columnDefs: [
            { field: 'id', displayName: 'id' },
            { field: 'name', displayName: 'name' },
            { 
                field: 'parentId', displayName: 'parent',
                cellTemplate: $.trim($('#template').html())
            },
        ]
    };
}

ko.applyBindings(new ViewModel());

1 个答案:

答案 0 :(得分:3)

当您进入celltemplate时,您需要使用$userViewModel来访问“$ root”视图模型。

来自documentation

  

$ userViewModel:{{ko binding context}} //您用于实例化网格的viewmodel的访问者。

所以你需要写:

<script type="text/html" id="template">
    <select data-bind="options: $userViewModel.data, 
                       optionsText: 'name', optionsValue: 'id', 
                       optionsCaption: '-', value: $parent.entity[$data.field]">
    </select>
</script>

演示JSFiddle.