Greetings!
I’m struggling with making a multiselect control work in a Property widget.
I’ve successfully used the options: value to fetch data from the server. However I don’t know how to apply a template to the list.
The following works as long as my list item is named ‘value’:
elements: [
{label: 'Report Info', type: 'label'},
{label: 'Id', type: 'text', id: 'id'},
{label: 'Name', type: 'text', id: 'name'},
{label: 'Info', type: 'text', id: 'info'},
{
label: 'Categories',
type: 'multiselect',
id: 'categories',
optionslist: true,
options: "/api/webix/user_tags"
}
However I can’t seem to find any docs related to applying a template to multiselects or selects in a property widget. I’ve done a variety of experiments with body and option object tags - to no avail.
Any advice would be much appreciated.
Regards,
Bruce