Store components
This is the collection of store components within the ui-react-dom
module. There are 6 store components in total.
TableInHtmlTable
The TableInHtmlTable
component renders the contents of a single Table
in a Store
as an HTML <table> element, and registers a listener so that any changes to that result will cause a re-render.
SortedTableInHtmlTable
The SortedTableInHtmlTable
component renders the contents of a single sorted Table
in a Store
, as an HTML <table> element, and registers a listener so that any changes to that result will cause a re-render.
SortedTablePaginator
The SortedTablePaginator
component renders a paginator for a sorted table.
ValuesInHtmlTable
The ValuesInHtmlTable
component renders the keyed value contents of a Store
as an HTML <table> element, and registers a listener so that any changes to that result will cause a re-render.
EditableCellView
The EditableCellView
component renders the value of a single Cell
in a way that can be edited in a web browser, and registers a listener so that any changes to that result will cause a re-render.
EditableValueView
The EditableValueView
component renders the value of a single Value
in a way that can be edited in a web browser, and registers a listener so that any changes to that result will cause a re-render.