The StringList component allows to specify a list of string values.
Use the buttons and text fields to edit the entries of the list:
./src/components/list/treezStringList.js
./test/components/list/treezStringList.test.js
./demo/components/list/treezStringListDemo.html
...
sectionContent.append('treez-string-list')
.label('String list:')
.value('["a","b","c","d"]')
.bindValue(this, () => this.names);
...
An array of strings, e.g. ['a','b','c','d'].
Also see the attributes that are inherited from LabeledTreezElement.
A string that can be evaluated to an array of strings, e.g. '["a","b","c","d"]'
Also see the attributes that are inherited from LabeledTreezElement.