cancel
Showing results for 
Search instead for 
Did you mean: 

How to read value from table selected entries?

Former Member
0 Kudos

Hi,

I am using sap.m table .I have got the selected rows via


var sellist = otable.getSelectedItems();

  • Now i want to loop the selllist and get the row fields value how do it achieve the same?

  • Each entry in sellist is of sap.m.ListItemBase return

JsDoc Report - SAP UI development Toolkit for HTML5 - API Reference - sap.m.ListItemBase

Table column list

I am unable to get the values of each row selected ?

Help me out.I checked scn before posting i could not find anything relevant?

Accepted Solutions (1)

Accepted Solutions (1)

santhu_gowdaz
Active Contributor
0 Kudos

Answers (2)

Answers (2)

Former Member
0 Kudos

Thanks all,

I got it via


sellist[i].getAggregation("cells")[1].getProperty("text");

i is the for loop counter

Former Member
0 Kudos