Options
All
  • Public
  • Public/Protected
  • All
Menu

BindingNode represents a data-bound DOM element with one or more binding expressions.

Hierarchy

  • BindingNode

Index

Constructors

constructor

  • Initializes a new instance of the {@link geocortex.framework.ui.BindingNode} class

    Returns BindingNode

Properties

children

children: BindingNode[]

Child bindings.

context

context: any

Data context of the binding, usually a view model of some sort.

contextChange

contextChange: boolean

Whether or not this node represents a change in data context, e.g. in a @source binding.

domElement

domElement: HTMLElement

The DOM element for which this binding effects.

expressions

expressions: BindingExpression[]

Computed binding expressions.

parent

parent: BindingNode

Methods

destroy

  • destroy(): void
  • Destroys this binding node, unsubscribing from any events and freeing all resources.

    Returns void