When my evaluate returns a generic List<BillItem>:
Now suppose I want to pass the wrapped flowScope.itemToAddList as a parameter to another, how do I do it?Code:<evaluate expression="billingService.clearAddItems()" result="flowScope.itemToAddList" result-type="dataModel"/>
This above code only works if deleteItems accepts a OneSelectionTrackingListDataModel parameter. Who decided that dataModel meant this? Can I unwrap the dataModel before passing the parameter equivalent to below:Code:<evaluate expression="billingService.deleteItems(flowScope.itemToAddList)" result="flowScope.itemToAddList" result-type="dataModel"/>
PLEASE HELP!!Code:<evaluate expression="billingService.deleteItems(flowScope.itemToAddList.data)" result="flowScope.itemToAddList" result-type="dataModel"/>![]()


Reply With Quote
