Function Change

  • Type Parameters

    Parameters

    • htmlElementID: string

      the element to bind the event to

    Returns (<This>(target, context) => void)

    DecoratorCallback

      • <This>(target, context): void
      • Type Parameters

        Parameters

        • target: ((this, event) => void)
        • context: ClassMethodDecoratorContext<This, ((this, event) => void)>

        Returns void

    Description

    Decorator to bind a change event to an element. For checkboxes, this will return "on" when checked or "" when unchecked.

    Export

    Example

    @Change("myInput")
    myInputChange(e: ChangeEvent) {
    console.log("Input changed");

Generated using TypeDoc