4

我在列表视图中使用 Kendo UI 下拉列表

<ul data-role="listview" id="participants-listview" data-style="inset" data-template="participants-listview-template" data-bind="source: participants, events { click: onSelectParticipant }" />

<script type="text/x-kendo-template" id="listview-template">
    <div>
            <span>#:RoleDesc#</span> 
            <span>
                <select data-role="dropdownlist" id="status-id"
                        data-text-field="StatusDesc" 
                        data-value-field="StatusId"
                        data-bind="value: StatusId, source: participantStatuses, events: { change: onParticipantStatusChange }" 
                        name="Status" 
                        required="required" 
                        validationMessage="required">
                </select>
            </span> 
    </div>
</script>

视图模型

viewModel = kendo.data.ObservableObject.extend({
    dataSource: new kendo.data.DataSource({
            transport: {
                type: "odata",
                read: {
                    url: function() {
                        return meetings/participants";
                    }
                }
              }        
        }),
    participants: [], //listview data
    participantStatuses: [   // dropdownlist selection 
            { StatusId: 1, StatusDesc: "Invited" } ,
            { StatusId: 6, StatusDesc: "Present" }, 
            { StatusId: 7, StatusDesc: "Absent" } 
        ],
    selectedParticipant: null,
    showListView: function(e) {
        viewModel.dataSource.fetch(function(){
                var data = viewModel.dataSource.data();
                meetingViewModel.set("participants", data);
            });
    },

我期望当页面加载时,参与者的选定 statusId 将被下拉列表捕获为 selectedValue,方法是将参与者绑定StatusId到下拉列表的value属性,如下所示data-bind="value:StatusId"。但在我的情况下它很奇怪,它抛出了一个错误

 Uncaught TypeError: Object #<Object> has no method 'get' 

当我删除 时data-bind="value:StatusId",错误消失了,但它没有选择适当的选定值。

关于这个错误的任何想法?

4

1 回答 1

5

我看到两个可能的问题。

首先,您的data-bind="value: StatusId". StatusId在你的 ViewModel 中吗?我没有看到它,但它是一个扩展对象,因此它可以在您粘贴的代码之前定义。

第二个问题,我认为这一点也不明显,是下拉列表从您的列表数据源返回完整对象;不仅仅是请求的属性/字段。

请参阅他们网站上的此演示页面以获取示例:http ://demos.kendoui.c​​om/web/mvvm/widgets.html

具体来说,他们使用辅助函数来返回对象的字符串表示形式。相反,您可以StatusId根据需要返回。

<h4>DropDownList </h4>
<select data-role="dropdownlist"
        data-text-field="name" data-value-field="value" data-bind="source: colors, value: dropDownListValue">
</select>

脚本

dropDownListValue: null,
displayDropDownListValue: function() {
    var dropDownListValue = this.get("dropDownListValue");
    return kendo.stringify(dropDownListValue);
}

这似乎相当令人费解,但我自己只是解决了这个问题,未来应该不会有太大的问题。

于 2013-09-02T22:07:02.150 回答