Currently, our EcoResProductDetailsExtended page has an action pane with multiple action pane tabs. In the action pane sell tab there's a calculated field that is brought in called Dealer Price. I'd like to display that field or just the value of it on the sell action pane tab.
This is the code that calls the table where the method is set on the InventTable
pmfFormCtrl.setDatasources(inventTable); pmfFormCtrl.initPost(); releasedProduct = EcoResReleasedProductFactory::construct().getReleasedProductFromProductForm(this);
This is the code that is adding the method for calculation here:
this.cacheAddMethod(tableMethodStr(InventTable, frDealerPrice));
The way it's currently set up we have menu item buttons on the tab that can be accessed without having to click and open the tab first. There are also some values that I can't put a finger on where exactly they're coming from. I figured if they can display values they could possibly display the same for a calculated value.