Function BindValue

  • Type Parameters

    Parameters

    • id: string

      the element to bind the property to

    • Optional transform: ((this, value) => string)

      an optional function to transform the value before it is set on the element

        • (this, value): string
        • Parameters

          Returns string

    Returns ((target, context) => any)

    DecoratorCallback

      • (target, context): any
      • Parameters

        • target: any
        • context: ClassFieldDecoratorContext<This, Value>

        Returns any

    Description

    Decorator to bind the innerHtml or value property to an element.

    Export

    Example

    //This will display Hello World in the div with id myDiv
    @BindValue("myDiv")
    public hello: string = "Hello World";

    Example

    //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";

    Example

    //This will display the value of the variable in the input box with id myInput
    @BindValue("myInput")
    public hello: string = "Hello World";

    Example

    //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";
  • Type Parameters

    Parameters

    • id: string

      the element to bind the property to

    • transform: ((this, value) => string)

      a function to transform the value before it is set on the element

        • (this, value): string
        • Parameters

          Returns string

    Returns ((target, context) => any)

    DecoratorCallback

      • (target, context): any
      • Parameters

        • target: any
        • context: ClassFieldDecoratorContext<This, Value>

        Returns any

    Description

    Decorator to bind the innerHtml property to an element.

    Export

    Example

    //This will display Hello World in the div with id myDiv
    @BindValue("myDiv", (value: boolean) => value ? "Hello" : "Goodbye")
    public hello: boolean = true;

    Example

    //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