Lattice Grid Buy a licence

demo D208

Configuring a type

One field, five presentations; the stored value never changes

createUnitType({ display, decimals, … })

Building…
Loading a live grid…

The configuration

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@toclocoinc/lattice-grid@1.13.0/lattice-grid.min.css">
<script src="https://cdn.jsdelivr.net/npm/@toclocoinc/lattice-grid@1.13.0/lattice-grid.min.js"></script>

<div id="grid" style="height: 460px"></div>

<script>
  // The same field stored in metres, shown four ways. The stored value never
  // changes; only the display does.
  const dataTypes = {
    spanAuto: LatticeGrid.createUnitType({ system: 'length', unit: 'm', display: 'auto' }),
    spanMm:   LatticeGrid.createUnitType({ system: 'length', unit: 'm', display: 'mm' }),
    spanKm:   LatticeGrid.createUnitType({ system: 'length', unit: 'm', display: 'km', decimals: 3 }),
    spanSig:  LatticeGrid.createUnitType({ system: 'length', unit: 'm', display: 'auto', significantFigures: 3 }),
  };

  const grid = LatticeGrid.createGrid(document.getElementById('grid'), {
    rowKey: 'id',
    dataTypes,
    columns: [
      { field: 'run', title: 'Run', layout: { pin: 'start', width: 120 } },
      { field: 'span', id: 'stored', title: 'Stored (m)', type: 'number' },
      { field: 'span', id: 'auto', title: "display: 'auto'", type: 'spanAuto' },
      { field: 'span', id: 'mm', title: "display: 'mm'", type: 'spanMm' },
      { field: 'span', id: 'km', title: "display: 'km'", type: 'spanKm' },
      { field: 'span', id: 'sig', title: '3 sig figs', type: 'spanSig' },
    ],
    rows,
  });
</script>