:: Forum >>

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, a = [];

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

This topic is archived.


Back to support forum

Forum search