Displays the data tables.
It is possible to watch for the events open-changed and destroyed on the ui.
open-changed
destroyed
const ui = ...;ui.on("open-changed",(open)=> { ... });ui.on("destroyed",()=> { ... }); Copy
const ui = ...;ui.on("open-changed",(open)=> { ... });ui.on("destroyed",()=> { ... });
Readonly
Provides access to the current open state true ui is shown false ui is hidden
Destroys the instance.
Stops displaying the current content (if any).
The ui should stop referencing the current content and release all model-related resources and watchers.
Registers event listener.
Displays the content of the given tables. Existing content for previous tables are replaced.
Displays the data tables.
It is possible to watch for the events
open-changed
anddestroyed
on the ui.