Here is how I am reading row of data from Fragment view table..
var some = oTempData.getProperty("/Goods");
for(var i = 0; i < some.length; i++) {
var obj = some[i];
}
in order to populate the DetailView.. can I use addRow() function..
var oViewModel = this.getModel("detailView");
var oLineItemTable = this.byId("lineItemsList");
When I look at the oLineItemTable, I don't see the data array under oData structure.. not sure.. I get the right reference to the table in Detail view..!
Thanks