Module Bonsai_simple_table.Make

Parameters

module Row : Row
module Col_id : Id

Signature

type cell = {
  1. node : Bonsai_web_proc.Vdom.Node.t;
  2. attrs : Bonsai_web_proc.Vdom.Attr.t list;
}

This will be turned into a td with contents node and attributes attrs.

module Column : sig ... end
module Model : sig ... end
module Input : sig ... end

In addition to specifying the full range of rows and cols, we also ask for the IDs in order. This can be used to implement both filtering and sorting (although there is no support within this component to e.g. sort on a column when the user clicks on the header).

module Action : sig ... end
module Result : sig ... end