Hi All,
I have used jQuery to set data to the table by getting cells id:
$('#'+prevRowHTMLId + ' .ratioFromTxt').html(sap.ui.controller("fame.MasterEntities").roundValueToDecimal(ratioFrom));
$('#'+prevRowHTMLId + ' .ratioToTxt').html(sap.ui.controller("fame.MasterEntities").roundValueToDecimal(ratioTo));
But when i try to get the cell data first 2 columns which are input fields where i can give data that data i am able to fetch but not the above 2.
if i say
sap.ui.getCore().byId("oTable_idGG").getItems()[0].getCells();
i will get all the 4 cells in that 1st 2 cells have data but not the other 2.
Thanks
Rohit