Can update this in that I've got the basic method
.Read(read => read.Action("PartsHistory", "PartsHistory").Data("onRead"))
function onRead() {
return {
pPartName: $("#txt_partnum").val(),
pStartDate: $("#dt_fromdate").val(),
pEndDate: $("#dt_todate").val()
};
(in response to a button)
function onClick() {
//validate the input elements and check if there are any errors
var grid = $("#PartsHistory").data("kendoGrid");
grid.datasource.read();
};
The read method does not exist in the datasource
When I look at intellisense, nothing is there for read, just onRead and ready.
Do I need a particular version of kendo.mvc.dll and/or javascript files for this to work? I've had some issues with the license and so far can only use one from 2016.