I have a header/lines type of object (think SalesTable/PurchTable), and on the header I have two calculated display methods, "total qty" and "total invoiced".
I want to add a simple display that says "Fully Invoiced", which is a display method that returns:
return this.TotalQty() == this.TotalInvoiced();
The issue is that calls the two display method calculations again, which could be performance hit on ListPages.
Is there a way to make a form method that uses the cached values so I don't have to call extra calculations and I don't have to create a table column?