ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: hyh888 on December 01, 2021, 05:35:13 pm
-
Would you like kindly show me how to get cell value when a cell get focus whenever using keyboard or mouse?
-
Please use selectEnd event and grid.Selection().value() API
https://paramquery.com/pro/api#event-selectEnd
https://paramquery.com/pro/api#method-Range
-
Thank you very much, I can get the value of selected cell. But is there any method to get the id of the row that includes the selected cell? I tried to use ui.rowData["id"] to get the row id, but there is no such method.
-
grid.Selection().eachRow() API can be used to get rowData of the selected cell.
-
Thank you, it works