I have the next
@(Html.Kendo().Grid<Corporativo.Model.SolicitudProductoVM>()
.Name("SolicitudesProducto")
.Columns(columns =>
{
columns.Bound(e => e.Consecutivo).Width(20).Title("CÓDIGO");
columns.Bound(e => e.Desc_Cliente).Width(80).Groupable(false).Title("CLIENTE");
columns.Bound(e => e.Fecha).Width(40).Groupable(false).Title("FECHA");
columns.Bound(e => e.Imp_Total).Width(40).Groupable(false).Title("IMP. TOTAL");
})
.Filterable()
.Pageable()
.Scrollable()
.DataSource(dataSource => dataSource
.Ajax()
.Read(read => read.Action("GetAllSolicitudesJSON", "CrmProductRequest", null))
)
)
with the next error...
Cannot find a public property of primitive type to sort by.
Ideas???
Sortable? - Rick S