Name |
Desciption |
Details HTML | Set the HTML that should be used to render item details. |
Details Icon | Set the icon on the items in this list that is clicked to access details. |
Details Style | Set the styling that should be applied to the details HTML. |
Disabled | The widget cannot be used. |
Empty HTML | Set the HTML that should be used to render in case if list is empty. |
filter | Is used to filter the records available in the list by defining a function checking certain conditions, if the record fulfills the condition, it gets displayed otherwise it gets filtered. |
Hidden | Hides the widget from the user. |
HTML | Set the HTML that should be used to render items in this list. |
HTML Style | Set the styling that should be applied to the HTML for this list. |
Item Type | Set which type of widget should be used for the items in the list. |
sorting | Is used to sort the records available in the list by defining a function checking certain condition to sort the data. |
Storage Mode | To store the data of the list in cloud or locally in the device of the user. |
Tab Index | The Tab Index is an integer that tells the order of the widget when using the tab-key to move from one widget to another. |
Name |
Desciption |
Background-color | Change background color of the widget |
Border color (item) | The border color for the items in the list |
Border radius | The border radius applied in the corners of the items in the list |
Border style (item) | The border style whether solid, dotted or dashed for items |
Border width (item) | The border width for the items in the list |
Color | Color of the text inside the widgets. May not apply to all text inside all widgets |
Font Size | Set the font size in pixels for text |
Font weight | Text font weight for list items |
Icon color (item) | Icon color in the list items |
List item background color | The background color for the items in the list |
List item spacing | generate space between each items in the list |
List wrap padding (Left Right) | Generate space in the left and right area of the list |
List wrap padding (top bottom) | Generate space in the top and bottom area of the list |
Text-alignment | Set left, centered or right. Applies both to icon and text |
blur
(
)
Triggers the blur event.
focus
(
)
Triggers the focus event.
Gets the value of the specified property.
Parameters
Name |
Type |
Description |
name |
String
|
The name of the property. |
Returns
The property's value.
getId
(
)
→{ ID }
Returns the ID of the widget.
Returns
The ID of the widget
Gets the records in the list.
Returns
Promise containing all of the Lists items.
Returns the widget's value.
Returns
The widget's value.
hide
(
)
Hides the widget.
Returns true if the widget is enabled.
Returns
True if enabled, otherwise false.
Returns true if the widget is hidden.
Returns
True if hidden, otherwise false.
refresh
(
opts: Object
)
Refreshes the list.
Parameters
Name |
Type |
Description |
opts |
Object
|
Optional object used to configure the refresh. |
render
(
)
Renders the list.
scrollToBottom
(
)
Scrolls the list to the bottom.
Sets the value of the specified property.
Parameters
Name |
Type |
Description |
name |
String
|
The name of the property. |
value |
Object
|
The new value. |
setEnabled
(
Enabled: Boolean
)
Enables/disables the widget.
Parameters
Name |
Type |
Description |
Enabled |
Boolean
|
True to enable the widget, false to disable. |
setQuery
(
queryName: String
)
Sets the query used to populate the list with items.
Parameters
Name |
Type |
Description |
queryName |
String
|
The name of the query. |
setRecords
(
records: Array<Record> )
Sets the records in the list.
Parameters
Name |
Type |
Description |
records |
Array<Record> |
The records to display. |
setStyle
(
Object: Object
)
Set the widget-style
Parameters
Name |
Type |
Description |
Object |
Object
|
properties |
setValue
(
value: Object
)
Sets the widget's value.
Parameters
Name |
Type |
Description |
value |
Object
|
The new value. |
show
(
)
Shows the widget.