I have following code
oTableEntry = this.getView().byId("oTable");
var count = oTableEntry._getRowCount();
var oTData;
for (var i = 0; i < count; i++) {
oTData = oTableEntry.getContextByIndex(i).getObject();
oTData
doesn't contain values for all the columns even though they appear in the table. Am I doing something wrong here?