Dashboards
SQL Frames allows crating ad-hoc dashboards very easily with powerful layout API. It is possble to create simple to complex layouts using SQL Frames REPL by just organizing data in arrays and objects. This allows easily creating ad-hoc dashboards and other complex interactions.
Objects for tabs
Return the data as an object and each property of the object is rendered as a tab.
Arrays as lists
Return the data as an array to display as a list of items one below the other.
Only the first 20 items of the array are displayed and a more link is provided for end user to view more items.
It is possible to nest objects and arrays one inside the other to create more complex layouts.
Horizontal layout
By default horizontal layout wraps the content. However, it is possible to use nowrap()
to avoid wrapping of the content.