07-17-2010 12:59 AM
I want to get the Item from ListField. But I am not getting.
For Getting Index of Selected Item
We Write listFeed.getSelectedInde(); // It Returns the Index Of SelectedItem
But I want Item name.
How can i Achieve this.
Any One Plz Tell me.
My Project Stucked about this Problem.
Solved! Go to Solution.
07-17-2010 07:14 PM
try listFeed.getSelection();
07-18-2010 12:54 AM
Look at the drawListRow method in the ListFieldCallback. That code is responsible for displaying the name for each row; you can use the same logic to obtain the name for other purposes.
07-29-2010 04:19 AM
Thank u Ted, Got What u said.