Function BindCSSClassToBoolean

  • Type Parameters

    Parameters

    • id: string

      the element to bind the property to

    • cssClassName: string

      the class name to add

    Returns ((target, context) => any)

    DecoratorCallback

      • (target, context): any
      • Parameters

        Returns any

    Description

    Decorator to bind the cssClassName property if the boolean property is true

    Export

    Example

    //This will add the css class myCSSClass to the div with id myDiv if the enabled property is true
    @BindCSSClassToBoolean("myDiv", "myCSSClass")
    public enabled: boolean = true;

Generated using TypeDoc