viewof table = {
const div = html`<div style="height:640px"></div>`;
div.value = {};
yield div;
new hpccGrid.Table()
.target(div)
.columns(columns)
.data(data)
.on("click", (row, col, sel) => {
div.value = sel ? row : {};
div.dispatchEvent(new CustomEvent("input"));
})
.lazyRender();
}