UNPKG
@mhmdaljefri/revogrid
Version:
latest (3.0.99)
3.0.99
3.0.98
3.0.97
Virtual reactive data grid component - RevoGrid.
github.com/revolist/revogrid
revolist/revogrid
@mhmdaljefri/revogrid
/
dist
/
collection
/
services
/
cell.helpers.js
8 lines
(7 loc)
•
204 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
{
DATA_COL
,
DATA_ROW
}
from
'../utils/consts'
;
export
function
getCell
(
cell
) {
return
{
x
:
parseInt
(cell.
getAttribute
(
DATA_COL
),
10
),
y
:
parseInt
(cell.
getAttribute
(
DATA_ROW
),
10
), }; }