I'm basing my code on this example: Remote binding in ASP.NET Core PivotGrid Component Demo | Telerik UI for ASP.NET Core
I'm modifying someone else's app working with Asp.Net Core 5
My code is;
@(Html.Kendo().PivotConfigurator()
.Name("configurator")
.Filterable(true)
.Height(570)
)
When I try to run it, I get this error:
II get a similar error for @(Html.Kendo().PivotGrid<CommissionReceivedViewModel>()
What would be causing this?
Thanks in advance