Optional
transform: ((this, value) => string[])a function to transform the value to a string[] before it is set on the element
Optional
replaceInnerHtml: booleanif true, the innerHTML of the element will be replaced with the value in the list, otherwise the value will be set as the value of the element
Optional
listItemId: string[]the id of the element to set the value of in the list item
DecoratorCallback
Decorator to bind a list to an element. The element will be cloned for each element in the list and the value of the element will be set to the value in the list
//This will create a list of divs with the values in the list that are
//siblings to myDiv. myDiv itself will be hidden
@BindList("myDiv")
public list: number[] = ["one", "two", "three"];
the element to bind the property to
a function to transform the value to a string[] before it is set on the element
Optional
replaceInnerHtml: booleanif true, the innerHTML of the element will be replaced with the value in the list, otherwise the value will be set as the value of the element
Optional
listItemId: string[]the id of the element to set the value of in the list item
DecoratorCallback
Decorator to bind a list to an element. The element will be cloned for each element in the list and the value of the element will be set to the value in the list
//This will create a list of divs with the values in the list that are
//siblings to myDiv. myDiv itself will be hidden
@BindList("myDiv", (value: number[]) => value.map((v)=>v.toString()))
public list: number[] = [1,2,3];
Generated using TypeDoc
the element to bind the property to