Abstract Model item type.
Readonly Abstract onAn OnEvent sender of container updates.
Sends two arrays on each container update: the first one contains added control entries, while the second one contains removed control entries.
The [OnEvent__symbol] property is an alias of this one.
Readonly Abstract readAn AfterEvent keeper of input container contents.
The [AfterEvent__symbol] property is an alias of this one.
Abstract addAppends input controls.
Rest ...controls: InControl<TItem>[]Input controls to add after the last one.
A supply of just added controls that removes them once cut off. Cut off supply when no controls added.
Inserts input controls at the given position.
An index to insert controls at.
Rest ...controls: InControl<TItem>[]Input controls to add after the last one.
A supply of just inserted controls that removes them once cut off. Cut off supply when no controls inserted.
Sets input control with the given index.
Replaces existing control if already present.
An index of input control to set. I.e. corresponding model item index.
Input control to add.
A supply of just added control that removes it once cut off.
Abstract spliceChanges the contents of controls array by removing or replacing existing controls and/or adding new ones.
The index at which to start changing the array.
Optional deleteCount: numberAn integer indicating the number of elements in the array to remove from start. If omitted
then all controls from start will be removed.
Rest ...controls: InControl<TItem>[]Controls to add.
A supply of just added controls that removes them once cut off. Cut off supply when no controls added.
Generated using TypeDoc
Input list controls.