How to get MakeFooter Totals refresh when the inline grid records are added or edited
The form is a Master Detail Inline Editing Grid for Invoice/InvoiceItems.
I used your footer griddemo to do this:
private object MakeFooter(GroupInfo<InvoiceItemAc> info)How to get the MakeFooter Amount Total recalculate when the inline grid Invoice Item records are added or edited ? I have grid grouping set to False so I have no groups defined. Is this part of the problem? ASP .Net Core Web site, Awesome controls (latest ver 6.3)
{
return new { Description = "Amount Total :", Amount = info.Items.Sum(o => o.Amount) };
Clifton Nurse
asked
at 28 Jun 2020
Answers
-
you can use
reloadOnSave
this will reload the grid after edit and create (by default only the row is updated).InlineEdit(.., reloadOnSave:true)
and for the delete as well (assuming that for delete you're using the helper from our demo):@Html.InitDeletePopupForGrid(gridId, "GridInlineEditDemo", reload:true)
this will make theInitPopupForm
inside callutils.refreshGrid
onSuccess
Omuanswered at 28 Jun 2020-
Wow. That worked right away. So I am getting the Popup Confirm delete form and I am able to complete all CRUD operations. And the Total Sum is also still working. THANK you very much.at 29 Jun 2020 Clifton Nurse
-