@(Html.Kendo().Grid<SomeViewModel>() .Name("SomeGrid") .Columns(columns => { columns.Bound(p => p.Id); }) .Events(e => e.DataBound("onDataBound")) .Selectable(selectable => selectable.Enabled(true).Mode(GridSelectionMode.Single).Type(GridSelectionType.Row)) .Scrollable() .Filterable() .DataSource(dataSource => dataSource .Ajax() .Read(...) ) )
When the row is selected, color changes to orange. How do I modify this behavior to not change to any color at all ?
