Created | ![]() |
Favourites | Opened | Upvotes | Comments |
15. Nov 2022 | 0 | 0 | 289 | 0 | 0 |
The wm.List is typically used to create menus (both flyouts and accordions), it can hold icons, automatically adds arrows for open/close state, can contain mixed state checkboxes (mixed state automatically handled throughout the hierarchy), can be reorganized by users on the fly - it is a versatile mobile first low footprint list.
var refList= wm.List.create(listData, config);
Argument | Type | Comment | |
listData | object | wm.List can create a List from either an existing DOM UL element or from a JSON object containing the list data.
You can pass either a reference to the UL element or if the UL element have an id-attribute, you can pass the id as a string.
If you retrieve the list data from a database, it is typically easier to create a JSON object - the schema is defined below. | |
config | object | ||
id | string | Any string that uniquely identifies the list. If you did not save the created list, refList, it is useful to later be able to get to a specific list on the page. | |
listType | string | 'flyout' | 'accordion'. Note that if you just want a list that is always fully expanded. Default: 'flyout'. | |
direction | string | 'vertical' | 'horizontal'. If used as a flyout menu, a vertical list will typically be placed at the left or right side of the viewport, while a horizontal list will typically be placed at the top or bottom side of the viewport. Default: 'vertical'. NOT IMPLEMENTED. | |
trigger | string | 'auto' | 'click' | 'hover' | 'expand'. How sublists are activated, that is: if the user needs to click or hover an item to toggle its sublist. If set to 'auto', trigger will be 'hover' for flyout lists and 'click' for accordions. If set to 'expand', the full list will be expanded for accordions, however for flyouts, trigger will revert to 'hover'. If set to 'click', links will be disabled on parent items. On mobile there is no 'hover', in which case trigger will revert to 'click' (unless if set to 'expand'). Default: 'auto'. | |
width | string | 'auto' | css-width-value (eg. '400px'). If set to 'auto', the list will fill the parent container. Default: 'auto'. | |
flyoutWidth | number | The width in pixels of sublist flyouts. | |
flyoutDirection | string | 'right' | 'left' | 'down' | 'up'. If used as a bottom menu, you would like the flyout direction to be 'up'. Default: 'right'. NOT IMPLEMENTED. | |
flyoutHorizontalAdjustment | number | Moves the flyout to the right of the its parent item. Use to fine tune position of flyouts. Default: 0. | |
flyoutVerticalAdjustment | number | Moves the flyout downwards from its parent item. Use to fine tune position of flyouts. Default: -3. | |
multipleExpand | boolean | false | true. If false and trigger is different from 'expand' only 1 sublevel can be open at a time. If true and listType is set to 'accordion' multiple sublevels can be open at a time (it is adviced to set trigger to 'click' for this effect). Default: false. | |
keepEffectOnExpanded | boolean | false | true. If set to true and multipleExpand is also set to true, toggle state will show on all items not only the last activated subhierarchy. Default: false. | |
indent | number | How many pixels an accordion sublevel should be indented (have no effect for listType='flyout'). Default: 24. | |
colors | object | ||
- front | string | The color of the item label & icon. Default: '#050505'. | |
- front_hover | string | The color of the item label & icon, when the item is hovered. Default: '#640DF3'. | |
- front_selected | string | The color of the item label & icon if the item is selected. Default: 'white'. NOT IMPLEMENTED | |
- background | boolean | The background color of the item. Default: 'white'. | |
- background_hover | string | The background color of the item, when the item is hovered Default: '#ECE0FD' | |
- background_selected | object | The background color of the item if the item is selected. Default: 'black'. NOT IMPLEMENTED. | |
addCheckboxes | string | 'auto' | 'yes' | 'no'. If 'yes', then checkboxes will be added to all items (mixed state will be tracked). If 'no', then no checkboxes will be added even if there are checkbox information in the list data. if 'auto', then checkboxes will be added to the items that have checkbox information in the list data. Default: 'auto'. | |
addArrows | boolean | true | false. If true, then arrows will be inserted on items that have subitems to indicate this item can be toggled. Default: true. | |
addArrowState | boolean | true | false. If true, then arrows will change direction to indicate whether an item is toggled (only relevant for addArrows=true). Default: true. |
Function | Comment |
var refList = wm.List.create(listData, config) | Creates a list and returns a reference to the list javascript object. Note that the DOM representation of the list can be retrived as: refList.ulList. The arguments are explained in detail in the above arguments documentation. |
var arrCheckboxes =refList.getChecked() | At anytime you can ask on a list which input boxes are checked. arrCheckboxes will hold ALL checkboxes as javascript objects {id: chkId, state: checkedState}, where checkedState can be either 'checked', 'unchecked' or 'mixed'. 'mixed' state can occur for checkboxes on items that have subitems, where some checkboxes among the subitems are checked. |
wm.List.getChecked(listId) | If you supplied a listId in the config object when creating the object, you can also get the checkbox states for a list using this method by passing that listId. This can be relevant in case you don't want to keep track of list references throughout a page. |
Event | Comment |
wm-list-checkbox | Will fire when (after) a checkbox is toggled. Usage: document.addEventListener('wm-list-checkbox', function(e) { var refList = e.detail.list; var refCheckbox = e.detail.checkbox; }); Note that refCheckbox is a javascript object {id: chkId, state: checkedState, ref: refChk} |