Optional
transform: ((this, value) => string)an optional function to transform the value before it is set on the element
DecoratorCallback
Decorator to bind the innerHtml or value property to an element.
//This will display Hello World in the div with id myDiv
@BindValue("myDiv")
public hello: string = "Hello World";
//This will display Hello World in the div with id myDiv in upper case
@BindValue("myDiv", (value: string) => value.toUpperCase())
public hello: string = "Hello World";
//This will display the value of the variable in the input box with id myInput
@BindValue("myInput")
public hello: string = "Hello World";
//This will display the value of the variable in the input box with id myInput in upper case
@BindValue("myInput", (value: string) => value.toUpperCase())
public hello: string = "Hello World";
the element to bind the property to
a function to transform the value before it is set on the element
DecoratorCallback
Decorator to bind the innerHtml property to an element.
//This will display Hello World in the div with id myDiv
@BindValue("myDiv", (value: boolean) => value ? "Hello" : "Goodbye")
public hello: boolean = true;
//This will display hello world in the input box with id myInput
@BindValue("myInput", (value: string) => value.toUpperCase())
public hello: string = "Hello World";
Generated using TypeDoc
the element to bind the property to