I'm trying to obtain the cells from a sap.m.Table without success.
My code is the following:
var currentDetailQuoteTable = sap.ui.getCore().byId('table-'+idMaster+'-'+countPressedList);
I need a way to get the cells from the current table, How can I to do that?
NOTE: I'm not using a model to bind the cells, I'm adding a row with the following sentence:
var currentRow= new sap.m.ColumnListItem({
cells: [
new sap.m.ObjectIdentifier({
title: detPos
}),
new sap.m.Text({
text: detDescription
})
]
});
oTableQuotes.addItem(currentRow);
Thanks in advance!