ich diesen Code zu schreiben, ausgewählt werden für Grid in asp.net MVC mit Kendo Ui erstellenwie Schlüsselzeile in Kendo ui Gitter
@(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.Command(command => command.Custom("ViewDetails").Click("showDetails"));
})
.ToolBar(toolbar =>
{
toolbar.Custom().Action("Create","Users").Text("add");
}
)
.Groupable()
.Pageable()
.Sortable()
.Scrollable()
.Filterable()
.HtmlAttributes(new {style = "height:500px;"})
.Selectable(selectable => selectable
.Mode(GridSelectionMode.Multiple)
.Type(GridSelectionType.Row))
.DataSource(dataSource => dataSource
.Server()
.Model(model => model.Id(item => item.Id))
))
ich will, wenn Benutzer klicken Sie auf ViewDetails
Alarm BrandId
Wert Säule, bitte helft mir .thanks alle
'grid.select()' funktioniert nur, wenn das Gitter '.Selectable()' – Salar