3.2.0

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
September 11,
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)
September 11,

This topic is archived.

See also:


Back to support forum