ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: atmaneuler on January 06, 2021, 08:48:30 am
-
I want to get and check the data of 1 cell is empty or not?
Expected: Use console show data of cell
-
Add expected: If it is empty, clicking on the cell will show the word "N / A", if you click on another cell, the previous cell will lose the word "N / A".
-
Empty cell can be checked as
var val = ui.rowData[ui.dataIndx];
if (val === "" || val == null) {
}
https://stackblitz.com/edit/paramquery-demo-empty-cell?file=index.js
-
Thanks admin ^_^