Hi Priya
You could use event itemPress of your table to get the cells and their content as show below:
itemPress: function(oEvent) {
var oItem = oEvent.getParameters().listItem;
var oCells = oItem.getAggregation('cells');
for (var i = 0; i < oCells.length; i++) {
var oCell = oCells[i];
//You can get the value from whatever control you have on oCell. E.g.: A text -> oCell.getText()
}
},
Please let me know if this helps.
Regards,
Jaime