1

现在我想做的是混合或服务器控件和javascript。我认为剑道服务器控件很优雅。如您所见,我拼命地试图找到如何访问网格中的可编辑属性但没有运气。我认为它会是

 var grid = $("#Grid").data("kendoGrid");
 grid.editable.template = function () { kendo.template($("#MyTemplate").html()) };

这个想法是,当用户单击编辑按钮时,他们会看到 #MyTemplate 而不是它的 kendo 默认 html 版本。也许,我需要朝不同的方向前进,请指导我。

这是我的完整代码,仅供参考。

 @model IEnumerable<Msh.Intranet.Models.ApiAdFileDisplayGridModel>
<script type="text/x-kendo-template" id="myTemplate">           
            <input data-bind="value: Id" name="Id"/>
        </script>
@(Html.Kendo().Grid(Model)
    .Name("Grid")
    .Columns(columns =>
    {
        columns.Bound(p => p.Id).Visible(false);
        columns.Bound(p => p.FileName).Visible(false);
        columns.Bound(p => p.FormNumber);
        columns.Bound(p => p.FormTitle);
        columns.Bound(p => p.Class);
        columns.Bound(p => p.SecondaryCategory).Title("Category") ;
        columns.Bound(p => p.RevisionDate).Format("{0:MM/dd/yyyy}");
        columns.Command(c =>
        {

            c.Edit();
            c.Destroy();
        });

    })
    .Selectable()
     .Groupable()
     .Pageable()
     .Filterable()
     //.Sortable()
           .ToolBar(tools =>
      {
          tools.Create();
      })
      .Editable(editor => editor.Mode(GridEditMode.PopUp))
     .DataSource(dataSource => dataSource
        .Ajax()

        //this tells kendo I am the primary key
            .Model(model => 
            { 
                model.Id(p => p.Id);
                model.Field(p => p.RevisionDate);
            })
        .Read(read => read.Url(@Url.Action("ApiAdFileDisplayGrid","api",null,null)).Type(HttpVerbs.Get))
        .Create(create=>create.Url(@Url.Action("ApiAdFileDisplayGrid","api",null,null)).Type(HttpVerbs.Post))
        .Update(update=>update.Url(@Url.Action("ApiAdFileDisplayGrid","api",null,null)).Type(HttpVerbs.Put))
        .Destroy(destroy=>destroy.Url(@Url.Action("ApiAdFileDisplayGrid","api",null,null)).Type(HttpVerbs.Delete))
    )
)
<script type="text/javascript">

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

        //grid.bind("change", function () {
        //    alert("Change ");
        //});

        grid.bind("dataBound", function (data) {
            alert("dataBound");

        });

        grid.bind("edit", function (e) {

            if (e.model.isNew()) {

                //create
                alert("new");


            } else {

                //edit
                alert("edit");

            }

        })

    // WebAPI needs the ID of the entity to be part of the URL e.g. PUT /api/Product/80
    grid.dataSource.transport.options.update.url = function (data) {
        var baseUrl = "@Url.Content("~/api/ApiAdFileDisplayGrid/")" +data.Id;
        return baseUrl;
    }

    // WebAPI needs the ID of the entity to be part of the URL e.g. DELETE /api/Product/80
    grid.dataSource.transport.options.destroy.url = function(data) {
        var baseUrl = "@Url.Content("~/api/ApiAdFileDisplayGrid/")" + data.Id;
        return baseUrl;
    }
        grid.editable.template = function () { kendo.template($("#MyTemplate").html()) };
});

</script>
4

2 回答 2

2

要自定义编辑器,您应该使用 MVC Editor 模板引擎。遵循代码库中的方法。

于 2012-12-25T11:37:00.250 回答
0

我在剑道网站上找到了这个帖子,它给了我一个替代我做模板的方法: http ://www.kendoui.c​​om/forums/mvc/grid/new-client-details-template.aspx#2427170

但是,看看如何与 kendo html 助手创建的 javascript 对象进行交互会很有趣。

于 2012-12-26T16:02:33.240 回答