ParamQuery Grid
Welcome,
Guest
. Please
login
or
register
.
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
Home
Help
Search
Login
Register
ParamQuery grid support forum
»
General Category
»
Help for ParamQuery Pro
»
Get data in cell
« previous
next »
Print
Pages: [
1
]
Author
Topic: Get data in cell (Read 1768 times)
atmaneuler
Pro Ultimate
Newbie
Posts: 33
Get data in cell
«
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
Logged
atmaneuler
Pro Ultimate
Newbie
Posts: 33
Re: Get data in cell
«
Reply #1 on:
January 06, 2021, 09:26:26 am »
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".
Logged
paramvir
Administrator
Hero Member
Posts: 6309
Re: Get data in cell
«
Reply #2 on:
January 06, 2021, 11:46:30 pm »
Empty cell can be checked as
Code:
[Select]
var val = ui.rowData[ui.dataIndx];
if (val === "" || val == null) {
}
https://stackblitz.com/edit/paramquery-demo-empty-cell?file=index.js
Logged
atmaneuler
Pro Ultimate
Newbie
Posts: 33
Re: Get data in cell
«
Reply #3 on:
January 07, 2021, 09:22:32 am »
Thanks admin ^_^
Logged
Print
Pages: [
1
]
« previous
next »
ParamQuery grid support forum
»
General Category
»
Help for ParamQuery Pro
»
Get data in cell