Function BindCheckedToBoolean

  • 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 checked/unchecked value of a checkbox input to a boolean

    Export

    Example

    //This will check the checkbox with id myCheckbox if the checked property is true
    @BindCheckedToBoolean("myCheckbox")
    public checked: boolean = true;

Generated using TypeDoc