我是 KendoUI 的初学者,我为创建网格编写此代码
@(Html.Kendo().Grid(Model)
.Name("Grid")
.Columns(columns =>
{
columns.Bound(p => p.Id).Groupable(false).Visible(false);
columns.Bound(p => p.BrandName);
columns.Bound(p => p.BrandAbbr);
columns.Bound(p => p.SrcImage);
columns.Bound(item => @item.Id).Title("Command").Filterable(false).Groupable(false)
.Template(@<text>
@Html.ActionLink("Edit", "Edit", new {id = @item.Id}, new {@class = "k-button k-button-icontext k-grid-Edit"})
@Html.ActionLink("Delete", "Delete", new {id = @item.Id}, new {@class = "k-button k-button-icontext k-grid-Delete"})
</text>).Width(200);
});
})
.ToolBar(toolbar =>
{
toolbar.Custom().Action("Create","Brand").Text("add");
}
)
.Groupable()
.Pageable()
.Sortable()
.Scrollable()
.Filterable()
.HtmlAttributes(new {style = "height:500px;"})
.DataSource(dataSource => dataSource
.Server()
.Model(model => model.Id(item => item.Id))
))
在这个网格中,我有删除和编辑命令。我想当用户单击编辑按钮进入网格视图编辑时以弹出形式显示。但我不知道该怎么做。请帮我。谢谢大家。