Function BindValueToNumber

  • Type Parameters

    Parameters

    • id: string

      the element to bind the property to

    • append: string = ""

      an optional string to append to the number before setting the value

    Returns ((target, context) => any)

    DecoratorCallback

      • (target, context): any
      • Parameters

        Returns any

    Description

    Decorator to bind the value of an element to a number

    Export

    Example

    //This will bind the text (value) of the div with id myDiv1 to the number in value
    @BindValueToNumber("myDiv1")
    public value: number = 100;

Generated using TypeDoc