Function BindList

  • Type Parameters

    Parameters

    • id: string

      the element to bind the property to

    • Optional 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[]

    • Optional replaceInnerHtml: boolean

      if true, the innerHTML of the element will be replaced with the value in the list, otherwise the value will be set as the value of the element

    • Optional listItemId: string[]

      the id of the element to set the value of in the list item

    Returns ((target, context) => any)

    DecoratorCallback

      • (target, context): any
      • Parameters

        • target: any
        • context: ClassFieldDecoratorContext<This, Value>

        Returns any

    Description

    Decorator to bind a list to an element. The element will be cloned for each element in the list and the value of the element will be set to the value in the list

    Export

    Example

    //This will create a list of divs with the values in the list that are
    //siblings to myDiv. myDiv itself will be hidden
    @BindList("myDiv")
    public list: number[] = ["one", "two", "three"];
  • Type Parameters

    Parameters

    • id: string

      the element to bind the property to

    • 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[]

    • Optional replaceInnerHtml: boolean

      if true, the innerHTML of the element will be replaced with the value in the list, otherwise the value will be set as the value of the element

    • Optional listItemId: string[]

      the id of the element to set the value of in the list item

    Returns ((target, context) => any)

    DecoratorCallback

      • (target, context): any
      • Parameters

        • target: any
        • context: ClassFieldDecoratorContext<This, Value>

        Returns any

    Description

    Decorator to bind a list to an element. The element will be cloned for each element in the list and the value of the element will be set to the value in the list

    Export

    Example

    //This will create a list of divs with the values in the list that are
    //siblings to myDiv. myDiv itself will be hidden
    @BindList("myDiv", (value: number[]) => value.map((v)=>v.toString()))
    public list: number[] = [1,2,3];

Generated using TypeDoc