ParamQuery grid support forum

General Category => Help for ParamQuery Grid (free version) => Topic started by: eriks on April 20, 2017, 11:04:00 pm

Title: need get data of cells when click in the row
Post by: eriks on April 20, 2017, 11:04:00 pm
i need put the text from the cells in another input when i click on the row
how i do this
Title: Re: need get data of cells when click in the row
Post by: paramvir on April 20, 2017, 11:15:56 pm
you can get the content of cell with cellClick event.

Code: [Select]
cellClick: function(evt, ui){
  var val = ui.rowData[ui.dataIndx];//use it anywhere.
}