:: Forum >> Version 2 >>

How to get the data in the first column of selected rows

Hi all,

Thanks in response,

My question is i have selected some letus assume 10 rows in my grid.
i want to get the first column data and store it in array. Is it possible.
Please help me.
Narayana Swamy, Bangalore
Tuesday, September 11, 2007
Something like this (?) -

obj.onSelectedRowsChanged = function(selectedRows){

  var 
i= [];

  for (
i=0i<selectedRows.lengthi++){
    
a[i] = this.getCellText(0selectedRows[i]);
  }
  
alert(a);
}
 
Alex (ActiveWidgets)
Tuesday, September 11, 2007



This topic is archived.

Back to support forum

Forum search