hi
i have a scenario where i have filtered data from
3 listboxes and populated the data in the table .
now the table contains about 10 rows .
now i need to select a particular row in the table
and catch the particular row data of the table .
n is size of the table .
for(int i=0;i<n;i++)
{
if(wdContext.nodeIt_Car_Data_t().isSelected(i) {
String model=wdContext.nodeIt_Car_Data_t().currentIt_Car_Data_tElement().getP_Model();
String trim=wdContext.nodeIt_Car_Data().currentIt_Car_DataElement().getP_Trim();
but iam not able get the row data in the string where i am catching in
it_car_data_t is the table node .
model and trim are table elements .
how can i solve this ?