I was able to add a grid to the form, but when clicking save the grid data does not submit with the rest of the form.
I was wondering if there are any articles on this situation or if I have to write custom JavaScript to handle it in on-submit of the form.
this is roughly my setup.
<kendo-form name="bid-form" form-data="@Model" layout="grid" asp-controller="" asp-action="" method="post">
... other items
<form-item field="@(nameof(Bid.ObjectList))" editor-handler="gridAsEditor"></form-item>
</form-items>
</kendo-form>