Webix List is a UI-related component that inherits from view and presents listed data items. The Webix library offers three
variations of list apart from the standard one - GroupList, X-List and
UnitList.
There's also the DoubleList widget that allows you to move data items between two lists via the related buttons.
webix.ui({
view:"list",
template:"...",
data:..//variable || path || dataset
});
You can load data in any of the supported data formats.
Note that there's no built-in possibility to edit data with List. You should create a prototype editlist object beforehand.