DataGridCell extends HTMLElement
The cell element for a DataGrid.
Unlike the row element (a dumb pooled container), the cell is a custom element: it renders content and is the addressable unit a future editable Spreadsheet will give behavior. It carries no model state of its own beyond back-references set at mount — positioning and lifecycle are driven by its DataGridRow controller and the grid's windower. Instances are pooled and recycled, so DataGridCell#reset must fully clear prior state on rebind.
Constructor
new DataGridCell()
Instance Methods
Bind this (possibly recycled) cell to a row/column/record and render it.
Returns
DataGridCell
this
Detach this cell: de-register from its column, wipe all per-binding state so the pooled element is clean, and return it to the grid's cell pool. Mirrors DataGridRow#unmount.