BindChain (ui)
@ckeditor/ckeditor5-ui/src/template
The return value of Template.bind()
. It provides to()
and if()
methods to create the observable attribute and event bindings.
Filtering
Methods
-
if( attribute, [ valueIfTrue ], [ callback ] ) → TemplateBinding
Binds an observable to an HTML element attribute or a text node
textContent
so it remains in sync with the observable attribute as it changes.Unlike
to
, it controls the presence of the attribute ortextContent
depending on the "falseness" of anObservable
attribute.Learn more about using
if()
in theTemplateValueSchema
.Parameters
attribute : String
An attribute name of
Observable
used in the binding.[ valueIfTrue ] : String
Value set when the
Observable
attribute is not undefined/null/false/'' (empty string).[ callback ] : function
Allows for processing of the value. Accepts
Node
andvalue
as arguments.
Returns
-
to( eventNameOrFunctionOrAttribute, [ callback ] ) → TemplateBinding
Binds an observable to either:
- an HTML element attribute or a text node
textContent
, so it remains in sync with the observable attribute as it changes, - or an HTML element DOM event, so the DOM events are propagated through an observable.
Some common use cases of
to()
bindings are presented below:Learn more about using
to()
in theTemplateValueSchema
andTemplateListenerSchema
.Parameters
eventNameOrFunctionOrAttribute : String | function
An attribute name of
Observable
or a DOM event name or an event callback.[ callback ] : function
Allows for processing of the value. Accepts
Node
andvalue
as arguments.
Returns
- an HTML element attribute or a text node
Every day, we work hard to keep our documentation complete. Have you spotted an outdated information? Is something missing? Please report it via our issue tracker.