Function BindDisabledToBoolean

  • Type Parameters

    Parameters

    • id: string

      the element to bind the property to

    Returns ((target, context) => any)

    DecoratorCallback

      • (target, context): any
      • Parameters

        Returns any

    Description

    Decorator to bind the disabled attribute of an element to a boolean

    Export

    Example

    //This will disable the button with id myButton if the disabled property is true
    @BindDisabledToBoolean("myButton")
    public disabled: boolean = true;

Generated using TypeDoc