Scan.cshmtl via View:
@(Html.Kendo().Grid<Main_Kendo.Models.ScannerViewModel>() <--- Html.Kendo gets red underline error ???
.Name("Grid")
.Columns(columns =>
{
columns.Bound(b => b.Scan).Width(140);
columns.Bound(b => b.BarcodeImage).Width(140);
columns.Bound(b => b.DropZone).Width(140);
columns.Bound(b => b.EnteredBy).Width(100);
columns.Bound(b => b.EnteredDate).Width(130);
columns.Command(command => command.Destroy()).Width(110);
})
Whatever below....
)
The error message:
HtmlHelper <dynamic> doesn't contain a definition for Kendo and no accessible extension method for 'Kendo' accepting a first argument of type HtmlHelper
Already have ScannerViewModel in Models folder, Kendo.Mvc was missing references that I added.