I am writing this code to create a Grid with kendo Ui in asp.net mvc
@(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)) ))
I want when the user clicks on ViewDetails alert BrandId Column value, please help me.thanks all
asp.net-mvc kendo-ui kendo-asp.net-mvc kendo-grid
Pouya
source share