Parcourir la source

Fixed DoChanged not being called on BillLine grid edit action button

Kenric Nugteren il y a 1 an
Parent
commit
6823870b58
1 fichiers modifiés avec 1 ajouts et 0 suppressions
  1. 1 0
      prs.desktop/Panels/Suppliers/Bills/SupplierBillLineGrid.cs

+ 1 - 0
prs.desktop/Panels/Suppliers/Bills/SupplierBillLineGrid.cs

@@ -102,6 +102,7 @@ public class SupplierBillLineGrid : DynamicOneToManyGrid<Bill, BillLine>
         if (EditItems(new BillLine[] { item }))
         {
             SaveItem(item);
+            DoChanged();
             return true;
         }
         return false;