为什么`data("kendogrid")`未定义? [英] Why Is `data(“kendogrid”)` Undefined?

查看:64
本文介绍了为什么`data("kendogrid")`未定义?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是kendo.ui的入门者,我已经编写了这段代码来创建kendo.ui.grid

I'm a starter in kendo.ui, I've written this code to create kendo.ui.grid

@(Html.Kendo().Grid<BrandViewModel>(Model)
    .Name("Grid")
    .Columns(columns =>
    {
        columns.Bound(p => p.BrandName);
        columns.Bound(p => p.BrandAbbr);
        columns.Bound(p => p.SrcImage);

        columns.Command(command => command.Custom("Edit").Click("editItem"));

    })

    .DataSource(dataSource => dataSource
        .Ajax()
        .Read(read => read.Action("CustomCommand_Read", "Brand"))
        .Model(model => model.Id(p => p.Id))
    )
)

当用户单击网格中的编辑"按钮时,它将在kendo.ui.window中显示编辑"视图,并且用户可以编辑数据.

When the user clicks the edit button in grid it will show Edit view in kendo.ui.window and the user can edit data.

@(Html.Kendo().Window().Name("Details")
    .Title("Customer Details")
    .Visible(false)
    .Modal(true)
    .Height(400)
    .Draggable(true)
    .Width(300)
    .Events(events => events.Close("onClose"))
)

<script type="text/x-kendo-template" id="template">
    <div id="details-container">
        <!-- this will be the content of the popup -->
        BrandName: <input type='text' value='#= BrandName #' />
    </div>
</script>


<script type="text/javascript">
    var detailsTemplate = kendo.template($("#template").html());
    var windowObject;

    $(document).ready(function () {
        windowObject = $("#Details").data("kendoWindow");
    });

    function editItem(e) {
        e.preventDefault();

        var dataItem = this.dataItem($(e.currentTarget).closest("tr"));

        windowObject.refresh({
            url: "/Brand/Edit/" + dataItem.Id
        });
        windowObject.center().open();
    }

    function onClose(e) {
        var grid = $("#Grid").data("kendoGrid").dataSource.read();

    }

</script>

但在onClose方法中的$("#Grid").data("kendoGrid")未定义,请帮助我,谢谢大家

but in onClose method $("#Grid").data("kendoGrid") is Undefined, please help me, thanks all

推荐答案

尝试窗口加载事件

$(window).load(function () {
var grid = $("#grid").data("kendoGrid");

这对我有用.

这篇关于为什么`data("kendogrid")`未定义?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆