Hello.
There is a grid in PartialView:
@(Html.Kendo().Grid(Model.SpokesmanList)
.Name(
"grid1"
)
.Columns(columns =>
{
columns.Bound(p => p.LastName);
columns.Bound(p => p.DocumentType);
columns.Bound(p => p.Position);
})
)
How can I fill this table with data on the client by calling the javascript function without serverside requests?