UNPKG

tabulator-tables

Version:

Interactive table generation JavaScript library

10 lines (8 loc) 235 B
export default function(cell, formatterParams, onRendered){ var content = document.createElement("span"); var row = cell.getRow(); row.watchPosition((position) => { content.innerText = position; }); return content; }