I'm trying to rewrite a kanban board from .Net/EJ to .Net Core/EJ2 and running into an issue saving a grid on the edit template.
In my Kanban template onDialogOpen function I create a Grid
var grid = new ej.grids.Grid({
width: 675,
// grid creation code
});
grid.appendTo('#bids');I can save the grid content and save the card data separately. I would like to be able to call the grid Update when I save the card but when I try it saves the card data again.
function kbActionBegin(args) {
if (args.requestType == 'cardChanged') {
$("#bids").ej.grids.Grid("endEdit");
}
}From what I can tell from the documentation this should work.