Function BindAttribute

  • Type Parameters

    Parameters

    • id: string

      the element to bind the property to

    • attribute: K

      the attribute to bind (empty string deletes the attribute from the element)

    • 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 any attribute of an element to a property

    Export

    Example

    //This will set the src attribute of the img with id myImg to the value of the src property
    @BindAttribute("myImg", "src")
    public src: string = "https://via.placeholder.com/150";

    Example

    @BindAttribute("myImg", "src", (val: string) => `https://test.com/images/${val})
    public src: string = "test.png";
  • Type Parameters

    Parameters

    • id: string

      the element to bind the property to

    • attribute: K

      the attribute to bind (empty string deletes the attribute from the element)

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

      a function to transform the value to a string 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 any attribute of an element to a property

    Export

    Example

    //This will set the src attribute of the img with id myImg to the value of the src property
    @BindAttribute("myImg", "disabled", (val: boolean) => val ? "disabled" : "")
    disabled:boolean=false;

Generated using TypeDoc