RootEditableElement (engine/view)
@ckeditor/ckeditor5-engine/src/view/rooteditableelement
Class representing a single root in the data view. A root can be either editable or read-only, but in both cases it is called "an editable". Roots can contain other editable elements making them "nested editables".
Filtering
Properties
-
readonly inherited
childCount : Number
module:engine/view/rooteditableelement~RootEditableElement#childCount
Number of element's children.
-
readonly inherited
document : Document
module:engine/view/rooteditableelement~RootEditableElement#document
The document instance to which this node belongs.
-
readonly inherited
index : Number | null
module:engine/view/rooteditableelement~RootEditableElement#index
Index of the node in the parent element or null if the node has no parent.
Accessing this property throws an error if this node's parent element does not contain it. This means that view tree got broken.
-
readonly inherited
isEmpty : Boolean
module:engine/view/rooteditableelement~RootEditableElement#isEmpty
Is
true
if there are no nodes inside this element,false
otherwise. -
readonly inherited observable
isFocused : Boolean
module:engine/view/rooteditableelement~RootEditableElement#isFocused
Whether the editable is focused.
This property updates when document.isFocused or view selection is changed.
-
inherited observable
isReadOnly : Boolean
module:engine/view/rooteditableelement~RootEditableElement#isReadOnly
Whether the editable is in read-write or read-only mode.
-
Name of the element.
-
readonly inherited
nextSibling : Node | null
module:engine/view/rooteditableelement~RootEditableElement#nextSibling
Node's next sibling, or
null
if it is the last child. -
readonly inherited
parent : Element | DocumentFragment | null
module:engine/view/rooteditableelement~RootEditableElement#parent
Parent element. Null by default. Set by
_insertChild
. -
readonly inherited
previousSibling : Node | null
module:engine/view/rooteditableelement~RootEditableElement#previousSibling
Node's previous sibling, or
null
if it is the first child. -
readonly inherited
root : Node | DocumentFragment
module:engine/view/rooteditableelement~RootEditableElement#root
Top-most ancestor of the node. If the node has no parent it is the root itself.
-
Name of this root inside
Document
that is an owner of this root. If no other name is set,main
name is used. -
Map of attributes, where attributes names are keys and attributes values are values.
-
protected inherited
_children : Array.<Node>
module:engine/view/rooteditableelement~RootEditableElement#_children
Array of child nodes.
-
protected inherited
_classes : Set
module:engine/view/rooteditableelement~RootEditableElement#_classes
Set of classes associated with element instance.
-
protected inherited
_customProperties : Map
module:engine/view/rooteditableelement~RootEditableElement#_customProperties
Map of custom properties. Custom properties can be added to element instance, will be cloned but not rendered into DOM.
-
Overrides old element name and sets new one. This is needed because view roots are created before they are attached to the DOM. The name of the root element is temporary at this stage. It has to be changed when the view root element is attached to the DOM element.
Parameters
name : String
The new name of element.
-
protected inherited
_styles : StylesMap
module:engine/view/rooteditableelement~RootEditableElement#_styles
Normalized styles.
-
private readonly inherited
_unsafeAttributesToRender : Array.<String>
module:engine/view/rooteditableelement~RootEditableElement#_unsafeAttributesToRender
A list of attribute names that should be rendered in the editing pipeline even though filtering mechanisms implemented in the
DomConverter
(for instance,shouldRenderAttribute
) would filter them out.These attributes can be specified as an option when the element is created by the
DowncastWriter
. To check whether an unsafe an attribute should be permitted, use theshouldRenderUnsafeAttribute
method.
Methods
-
constructor( document, name )
module:engine/view/rooteditableelement~RootEditableElement#constructor
Creates root editable element.
Parameters
document : Document
The document instance to which this element belongs.
name : String
Node name.
-
mixed
bind( bindProperties ) → Object
module:engine/view/rooteditableelement~RootEditableElement#bind
Binds observable properties to other objects implementing the
Observable
interface.Read more in the dedicated guide covering the topic of property bindings with some additional examples.
Consider two objects: a
button
and an associatedcommand
(bothObservable
).A simple property binding could be as follows:
button.bind( 'isEnabled' ).to( command, 'isEnabled' );
or even shorter:
button.bind( 'isEnabled' ).to( command );
which works in the following way:
button.isEnabled
instantly equalscommand.isEnabled
,- whenever
command.isEnabled
changes,button.isEnabled
will immediately reflect its value.
Note: To release the binding, use
unbind
.You can also "rename" the property in the binding by specifying the new name in the
to()
chain:button.bind( 'isEnabled' ).to( command, 'isWorking' );
It is possible to bind more than one property at a time to shorten the code:
button.bind( 'isEnabled', 'value' ).to( command );
which corresponds to:
button.bind( 'isEnabled' ).to( command ); button.bind( 'value' ).to( command );
The binding can include more than one observable, combining multiple data sources in a custom callback:
button.bind( 'isEnabled' ).to( command, 'isEnabled', ui, 'isVisible', ( isCommandEnabled, isUIVisible ) => isCommandEnabled && isUIVisible );
Using a custom callback allows processing the value before passing it to the target property:
button.bind( 'isEnabled' ).to( command, 'value', value => value === 'heading1' );
It is also possible to bind to the same property in an array of observables. To bind a
button
to multiple commands (alsoObservables
) so that each and every one of them must be enabled for the button to become enabled, use the following code:button.bind( 'isEnabled' ).toMany( [ commandA, commandB, commandC ], 'isEnabled', ( isAEnabled, isBEnabled, isCEnabled ) => isAEnabled && isBEnabled && isCEnabled );
Parameters
bindProperties : String
Observable properties that will be bound to other observable(s).
Returns
Object
The bind chain with the
to()
andtoMany()
methods.
-
Turns the given methods of this object into event-based ones. This means that the new method will fire an event (named after the method) and the original action will be plugged as a listener to that event.
Read more in the dedicated guide covering the topic of decorating methods with some additional examples.
Decorating the method does not change its behavior (it only adds an event), but it allows to modify it later on by listening to the method's event.
For example, to cancel the method execution the event can be stopped:
class Foo { constructor() { this.decorate( 'method' ); } method() { console.log( 'called!' ); } } const foo = new Foo(); foo.on( 'method', ( evt ) => { evt.stop(); }, { priority: 'high' } ); foo.method(); // Nothing is logged.
Note: The high priority listener has been used to execute this particular callback before the one which calls the original method (which uses the "normal" priority).
It is also possible to change the returned value:
foo.on( 'method', ( evt ) => { evt.return = 'Foo!'; } ); foo.method(); // -> 'Foo'
Finally, it is possible to access and modify the arguments the method is called with:
method( a, b ) { console.log( `${ a }, ${ b }` ); } // ... foo.on( 'method', ( evt, args ) => { args[ 0 ] = 3; console.log( args[ 1 ] ); // -> 2 }, { priority: 'high' } ); foo.method( 1, 2 ); // -> '3, 2'
Parameters
methodName : String
Name of the method to decorate.
-
mixed
delegate( events ) → EmitterMixinDelegateChain
module:engine/view/rooteditableelement~RootEditableElement#delegate
Delegates selected events to another
Emitter
. For instance:emitterA.delegate( 'eventX' ).to( emitterB ); emitterA.delegate( 'eventX', 'eventY' ).to( emitterC );
then
eventX
is delegated (fired by)emitterB
andemitterC
along withdata
:emitterA.fire( 'eventX', data );
and
eventY
is delegated (fired by)emitterC
along withdata
:emitterA.fire( 'eventY', data );
Parameters
events : String
Event names that will be delegated to another emitter.
Returns
-
inherited
findAncestor( patterns ) → Element | null
module:engine/view/rooteditableelement~RootEditableElement#findAncestor
Returns ancestor element that match specified pattern. Provided patterns should be compatible with Matcher as it is used internally.
Parameters
patterns : Object | String | RegExp | function
Patterns used to match correct ancestor. See
Matcher
.
Returns
Element | null
Found element or
null
if no matching ancestor was found.
Related:
-
mixed
fire( eventOrInfo, [ args ] ) → *
module:engine/view/rooteditableelement~RootEditableElement#fire
Fires an event, executing all callbacks registered for it.
The first parameter passed to callbacks is an
EventInfo
object, followed by the optionalargs
provided in thefire()
method call.Parameters
eventOrInfo : String | EventInfo
The name of the event or
EventInfo
object if event is delegated.[ args ] : *
Additional arguments to be passed to the callbacks.
Returns
*
By default the method returns
undefined
. However, the return value can be changed by listeners through modification of theevt.return
's property (the event info is the first param of every callback).
-
inherited
getAncestors( options = { [options.includeSelf], [options.parentFirst] } ) → Array
module:engine/view/rooteditableelement~RootEditableElement#getAncestors
Returns ancestors array of this node.
Parameters
options : Object
Options object.
Properties[ options.includeSelf ] : Boolean
When set to
true
this node will be also included in parent's array.Defaults to
false
[ options.parentFirst ] : Boolean
When set to
true
, array will be sorted from node's parent to root element, otherwise root element will be the first item in the array.Defaults to
false
Returns
Array
Array with ancestors.
-
inherited
getAttribute( key ) → String | undefined
module:engine/view/rooteditableelement~RootEditableElement#getAttribute
Gets attribute by key. If attribute is not present - returns undefined.
Parameters
key : String
Attribute key.
Returns
String | undefined
Attribute value.
-
inherited
getAttributeKeys() → Iterable.<String>
module:engine/view/rooteditableelement~RootEditableElement#getAttributeKeys
Returns an iterator that contains the keys for attributes. Order of inserting attributes is not preserved.
Returns
Iterable.<String>
Keys for attributes.
-
inherited
getAttributes() → Iterable.<*>
module:engine/view/rooteditableelement~RootEditableElement#getAttributes
Returns iterator that iterates over this element's attributes.
Attributes are returned as arrays containing two items. First one is attribute key and second is attribute value. This format is accepted by native
Map
object and also can be passed inNode
constructor.Returns
Iterable.<*>
-
inherited
getChild( index ) → Node
module:engine/view/rooteditableelement~RootEditableElement#getChild
-
inherited
getChildIndex( node ) → Number
module:engine/view/rooteditableelement~RootEditableElement#getChildIndex
Gets index of the given child node. Returns
-1
if child node is not found.Parameters
node : Node
Child node.
Returns
Number
Index of the child node.
-
inherited
getChildren() → Iterable.<Node>
module:engine/view/rooteditableelement~RootEditableElement#getChildren
-
inherited
getClassNames() → Iterable.<String>
module:engine/view/rooteditableelement~RootEditableElement#getClassNames
-
inherited
getCommonAncestor( node, options = { [options.includeSelf] } ) → Element | DocumentFragment | null
module:engine/view/rooteditableelement~RootEditableElement#getCommonAncestor
Returns a
Element
orDocumentFragment
which is a common ancestor of both nodes.Parameters
node : Node
The second node.
options : Object
Options object.
Properties[ options.includeSelf ] : Boolean
When set to
true
both nodes will be considered "ancestors" too. Which means that if e.g. node A is inside B, then their common ancestor will be B.Defaults to
false
Returns
Element | DocumentFragment | null
-
inherited
getCustomProperties() → Iterable.<*>
module:engine/view/rooteditableelement~RootEditableElement#getCustomProperties
Returns an iterator which iterates over this element's custom properties. Iterator provides
[ key, value ]
pairs for each stored property.Returns
Iterable.<*>
-
inherited
getCustomProperty( key ) → *
module:engine/view/rooteditableelement~RootEditableElement#getCustomProperty
Returns the custom property value for the given key.
Parameters
key : String | Symbol
Returns
*
-
inherited
getFillerOffset()
module:engine/view/rooteditableelement~RootEditableElement#getFillerOffset
Returns block filler offset or
null
if block filler is not needed. -
inherited
getIdentity() → String
module:engine/view/rooteditableelement~RootEditableElement#getIdentity
Returns identity string based on element's name, styles, classes and other attributes. Two elements that are similar will have same identity string. It has the following format:
'name class="class1,class2" style="style1:value1;style2:value2" attr1="val1" attr2="val2"'
For example:
const element = writer.createContainerElement( 'foo', { banana: '10', apple: '20', style: 'color: red; border-color: white;', class: 'baz' } ); // returns 'foo class="baz" style="border-color:white;color:red" apple="20" banana="10"' element.getIdentity();
Note: Classes, styles and other attributes are sorted alphabetically.
Returns
String
-
inherited
getNormalizedStyle( property ) → Object | String | undefined
module:engine/view/rooteditableelement~RootEditableElement#getNormalizedStyle
Returns a normalized style object or single style value.
For an element with style set to: margin:1px 2px 3em;
element.getNormalizedStyle( 'margin' ) );
will return:
{ top: '1px', right: '2px', bottom: '3em', left: '2px' // a normalized value from margin shorthand }
and reading for single style value:
styles.getNormalizedStyle( 'margin-left' );
Will return a
2px
string.Note: This method will return normalized values only if a particular style processor rule is enabled. See
StylesMap#getNormalized()
for details.Parameters
property : String
Name of CSS property
Returns
Object | String | undefined
-
inherited
getPath() → Array.<Number>
module:engine/view/rooteditableelement~RootEditableElement#getPath
Gets a path to the node. The path is an array containing indices of consecutive ancestors of this node, beginning from root, down to this node's index.
const abc = downcastWriter.createText( 'abc' ); const foo = downcastWriter.createText( 'foo' ); const h1 = downcastWriter.createElement( 'h1', null, downcastWriter.createText( 'header' ) ); const p = downcastWriter.createElement( 'p', null, [ abc, foo ] ); const div = downcastWriter.createElement( 'div', null, [ h1, p ] ); foo.getPath(); // Returns [ 1, 3 ]. `foo` is in `p` which is in `div`. `p` starts at offset 1, while `foo` at 3. h1.getPath(); // Returns [ 0 ]. div.getPath(); // Returns [].
Returns
Array.<Number>
The path.
-
inherited
getStyle( property ) → String | undefined
module:engine/view/rooteditableelement~RootEditableElement#getStyle
Returns style value for the given property mae. If the style does not exist
undefined
is returned.Note: This method can work with normalized style names if a particular style processor rule is enabled. See
StylesMap#getAsString()
for details.For an element with style set to
'margin:1px'
:// Enable 'margin' shorthand processing: editor.data.addStyleProcessorRules( addMarginRules ); const element = view.change( writer => { const element = writer.createElement(); writer.setStyle( 'margin', '1px' ); writer.setStyle( 'margin-bottom', '3em' ); return element; } ); element.getStyle( 'margin' ); // -> 'margin: 1px 1px 3em;'
Parameters
property : String
Returns
String | undefined
-
inherited
getStyleNames( [ expand ] ) → Iterable.<String>
module:engine/view/rooteditableelement~RootEditableElement#getStyleNames
Returns iterator that contains all style names.
Parameters
[ expand ] : Boolean
Expand shorthand style properties and return all equivalent style representations.
Defaults to
false
Returns
Iterable.<String>
-
inherited
hasAttribute( key ) → Boolean
module:engine/view/rooteditableelement~RootEditableElement#hasAttribute
Returns a boolean indicating whether an attribute with the specified key exists in the element.
Parameters
key : String
Attribute key.
Returns
Boolean
true
if attribute with the specified key exists in the element, false otherwise.
-
Returns true if class is present. If more then one class is provided - returns true only when all classes are present.
element.hasClass( 'foo' ); // Returns true if 'foo' class is present. element.hasClass( 'foo', 'bar' ); // Returns true if 'foo' and 'bar' classes are both present.
Parameters
className : String
-
Returns true if style keys are present. If more then one style property is provided - returns true only when all properties are present.
element.hasStyle( 'color' ); // Returns true if 'border-top' style is present. element.hasStyle( 'color', 'border-top' ); // Returns true if 'color' and 'border-top' styles are both present.
Parameters
property : String
-
Checks whether this object is of the given type.
This method is useful when processing view objects that are of unknown type. For example, a function may return a
DocumentFragment
or aNode
that can be either a text node or an element. This method can be used to check what kind of object is returned.someObject.is( 'element' ); // -> true if this is an element someObject.is( 'node' ); // -> true if this is a node (a text node or an element) someObject.is( 'documentFragment' ); // -> true if this is a document fragment
Since this method is also available on a range of model objects, you can prefix the type of the object with
model:
orview:
to check, for example, if this is the model's or view's element:viewElement.is( 'view:element' ); // -> true viewElement.is( 'model:element' ); // -> false
By using this method it is also possible to check a name of an element:
imgElement.is( 'element', 'img' ); // -> true imgElement.is( 'view:element', 'img' ); // -> same as above, but more precise
The list of view objects which implement the
is()
method:AttributeElement#is()
ContainerElement#is()
DocumentFragment#is()
DocumentSelection#is()
EditableElement#is()
Element#is()
EmptyElement#is()
Node#is()
Position#is()
Range#is()
RootEditableElement#is()
Selection#is()
Text#is()
TextProxy#is()
UIElement#is()
Parameters
type : String
Type to check.
Returns
Boolean
-
inherited
isAfter( node ) → Boolean
module:engine/view/rooteditableelement~RootEditableElement#isAfter
Returns whether this node is after given node.
false
is returned if nodes are in different trees (for example, in differentDocumentFragment
s).Parameters
node : Node
Node to compare with.
Returns
Boolean
-
inherited
isAttached() → Boolean
module:engine/view/rooteditableelement~RootEditableElement#isAttached
Returns true if the node is in a tree rooted in the document (is a descendant of one of its roots).
Returns
Boolean
-
inherited
isBefore( node ) → Boolean
module:engine/view/rooteditableelement~RootEditableElement#isBefore
Returns whether this node is before given node.
false
is returned if nodes are in different trees (for example, in differentDocumentFragment
s).Parameters
node : Node
Node to compare with.
Returns
Boolean
-
inherited
isSimilar( otherElement ) → Boolean
module:engine/view/rooteditableelement~RootEditableElement#isSimilar
Checks if this element is similar to other element. Both elements should have the same name and attributes to be considered as similar. Two similar elements can contain different set of children nodes.
Parameters
otherElement : Element
Returns
Boolean
-
mixed
listenTo( emitter, event, callback, [ options ] = { [options.priority] } )
module:engine/view/rooteditableelement~RootEditableElement#listenTo
Registers a callback function to be executed when an event is fired in a specific (emitter) object.
Events can be grouped in namespaces using
:
. When namespaced event is fired, it additionally fires all callbacks for that namespace.// myEmitter.on( ... ) is a shorthand for myEmitter.listenTo( myEmitter, ... ). myEmitter.on( 'myGroup', genericCallback ); myEmitter.on( 'myGroup:myEvent', specificCallback ); // genericCallback is fired. myEmitter.fire( 'myGroup' ); // both genericCallback and specificCallback are fired. myEmitter.fire( 'myGroup:myEvent' ); // genericCallback is fired even though there are no callbacks for "foo". myEmitter.fire( 'myGroup:foo' );
An event callback can stop the event and set the return value of the
fire
method.Parameters
emitter : Emitter
The object that fires the event.
event : String
The name of the event.
callback : function
The function to be called on event.
[ options ] : Object
Additional options.
Properties[ options.priority ] : PriorityString | Number
The priority of this event callback. The higher the priority value the sooner the callback will be fired. Events having the same priority are called in the order they were added.
Defaults to
'normal'
Defaults to
{}
-
Stops executing the callback on the given event. Shorthand for
this.stopListening( this, event, callback )
.Parameters
event : String
The name of the event.
callback : function
The function to stop being called.
-
mixed
on( event, callback, [ options ] = { [options.priority] } )
module:engine/view/rooteditableelement~RootEditableElement#on
Registers a callback function to be executed when an event is fired.
Shorthand for
this.listenTo( this, event, callback, options )
(it makes the emitter listen on itself).Parameters
event : String
The name of the event.
callback : function
The function to be called on event.
[ options ] : Object
Additional options.
Properties[ options.priority ] : PriorityString | Number
The priority of this event callback. The higher the priority value the sooner the callback will be fired. Events having the same priority are called in the order they were added.
Defaults to
'normal'
Defaults to
{}
-
mixed
once( event, callback, [ options ] = { [options.priority] } )
module:engine/view/rooteditableelement~RootEditableElement#once
Registers a callback function to be executed on the next time the event is fired only. This is similar to calling
on
followed byoff
in the callback.Parameters
event : String
The name of the event.
callback : function
The function to be called on event.
[ options ] : Object
Additional options.
Properties[ options.priority ] : PriorityString | Number
The priority of this event callback. The higher the priority value the sooner the callback will be fired. Events having the same priority are called in the order they were added.
Defaults to
'normal'
Defaults to
{}
-
Creates and sets the value of an observable property of this object. Such a property becomes a part of the state and is observable.
It accepts also a single object literal containing key/value pairs with properties to be set.
This method throws the
observable-set-cannot-override
error if the observable instance already has a property with the given property name. This prevents from mistakenly overriding existing properties and methods, but means thatfoo.set( 'bar', 1 )
may be slightly slower thanfoo.bar = 1
.Parameters
name : String | Object
The property's name or object with
name=>value
pairs.[ value ] : *
The property's value (if
name
was passed in the first parameter).
-
inherited
shouldRenderUnsafeAttribute( attributeName ) → Boolean
module:engine/view/rooteditableelement~RootEditableElement#shouldRenderUnsafeAttribute
Decides whether an unsafe attribute is whitelisted and should be rendered in the editing pipeline even though filtering mechanisms like
shouldRenderAttribute
say it should not.Unsafe attribute names can be specified when creating an element via
DowncastWriter
.Parameters
attributeName : String
The name of the attribute to be checked.
Returns
Boolean
-
mixed
stopDelegating( [ event ], [ emitter ] )
module:engine/view/rooteditableelement~RootEditableElement#stopDelegating
Stops delegating events. It can be used at different levels:
- To stop delegating all events.
- To stop delegating a specific event to all emitters.
- To stop delegating a specific event to a specific emitter.
Parameters
[ event ] : String
The name of the event to stop delegating. If omitted, stops it all delegations.
[ emitter ] : Emitter
(requires
event
) The object to stop delegating a particular event to. If omitted, stops delegation ofevent
to all emitters.
-
mixed
stopListening( [ emitter ], [ event ], [ callback ] )
module:engine/view/rooteditableelement~RootEditableElement#stopListening
Stops listening for events. It can be used at different levels:
- To stop listening to a specific callback.
- To stop listening to a specific event.
- To stop listening to all events fired by a specific object.
- To stop listening to all events fired by all objects.
Parameters
[ emitter ] : Emitter
The object to stop listening to. If omitted, stops it for all objects.
[ event ] : String
(Requires the
emitter
) The name of the event to stop listening to. If omitted, stops it for all events fromemitter
.[ callback ] : function
(Requires the
event
) The function to be removed from the call list for the givenevent
.
-
Custom toJSON method to solve child-parent circular dependencies.
Returns
Object
Clone of this object with the parent property removed.
-
mixed
unbind( [ unbindProperties ] )
module:engine/view/rooteditableelement~RootEditableElement#unbind
Removes the binding created with
bind
.// Removes the binding for the 'a' property. A.unbind( 'a' ); // Removes bindings for all properties. A.unbind();
Parameters
[ unbindProperties ] : String
Observable properties to be unbound. All the bindings will be released if no properties are provided.
-
protected inherited
_addClass( className )
module:engine/view/rooteditableelement~RootEditableElement#_addClass
Adds specified class.
element._addClass( 'foo' ); // Adds 'foo' class. element._addClass( [ 'foo', 'bar' ] ); // Adds 'foo' and 'bar' classes.
Parameters
className : Array.<String> | String
Fires
Related:
-
protected mixed
_addEventListener( event, callback, [ options ] = { [options.priority] } )
module:engine/view/rooteditableelement~RootEditableElement#_addEventListener
Adds callback to emitter for given event.
Parameters
event : String
The name of the event.
callback : function
The function to be called on event.
[ options ] : Object
Additional options.
Properties[ options.priority ] : PriorityString | Number
The priority of this event callback. The higher the priority value the sooner the callback will be fired. Events having the same priority are called in the order they were added.
Defaults to
'normal'
Defaults to
{}
-
protected inherited
_appendChild( items ) → Number
module:engine/view/rooteditableelement~RootEditableElement#_appendChild
Insert a child node or a list of child nodes at the end of this node and sets the parent of these nodes to this element.
Parameters
Returns
Number
Number of appended nodes.
Fires
Related:
-
protected inherited
_clone( [ deep ] ) → Element
module:engine/view/rooteditableelement~RootEditableElement#_clone
Clones provided element.
Parameters
[ deep ] : Boolean
If set to
true
clones element and all its children recursively. When set tofalse
, element will be cloned without any children.Defaults to
false
Returns
Element
Clone of this element.
-
protected inherited
_fireChange( type, node )
module:engine/view/rooteditableelement~RootEditableElement#_fireChange
-
protected inherited
_insertChild( index, items ) → Number
module:engine/view/rooteditableelement~RootEditableElement#_insertChild
-
Removes node from parent.
-
protected inherited
_removeAttribute( key ) → Boolean
module:engine/view/rooteditableelement~RootEditableElement#_removeAttribute
Removes attribute from the element.
Parameters
key : String
Attribute key.
Returns
Boolean
Returns true if an attribute existed and has been removed.
Fires
Related:
-
protected inherited
_removeChildren( index, [ howMany ] ) → Array.<Node>
module:engine/view/rooteditableelement~RootEditableElement#_removeChildren
Removes number of child nodes starting at the given index and set the parent of these nodes to
null
.Parameters
index : Number
Number of the first node to remove.
[ howMany ] : Number
Number of nodes to remove.
Defaults to
1
Returns
Array.<Node>
The array of removed nodes.
Fires
Related:
-
protected inherited
_removeClass( className )
module:engine/view/rooteditableelement~RootEditableElement#_removeClass
Removes specified class.
element._removeClass( 'foo' ); // Removes 'foo' class. element._removeClass( [ 'foo', 'bar' ] ); // Removes both 'foo' and 'bar' classes.
Parameters
className : Array.<String> | String
Fires
Related:
-
protected inherited
_removeCustomProperty( key ) → Boolean
module:engine/view/rooteditableelement~RootEditableElement#_removeCustomProperty
Removes the custom property stored under the given key.
Parameters
key : String | Symbol
Returns
Boolean
Returns true if property was removed.
Related:
-
protected mixed
_removeEventListener( event, callback )
module:engine/view/rooteditableelement~RootEditableElement#_removeEventListener
Removes callback from emitter for given event.
Parameters
event : String
The name of the event.
callback : function
The function to stop being called.
-
protected inherited
_removeStyle( property )
module:engine/view/rooteditableelement~RootEditableElement#_removeStyle
Removes specified style.
element._removeStyle( 'color' ); // Removes 'color' style. element._removeStyle( [ 'color', 'border-top' ] ); // Removes both 'color' and 'border-top' styles.
Note: This method can work with normalized style names if a particular style processor rule is enabled. See
StylesMap#remove()
for details.Parameters
property : Array.<String> | String
Fires
Related:
-
protected inherited
_setAttribute( key, value )
module:engine/view/rooteditableelement~RootEditableElement#_setAttribute
Adds or overwrite attribute with a specified key and value.
Parameters
key : String
Attribute key.
value : String
Attribute value.
Fires
Related:
-
protected inherited
_setCustomProperty( key, value )
module:engine/view/rooteditableelement~RootEditableElement#_setCustomProperty
Sets a custom property. Unlike attributes, custom properties are not rendered to the DOM, so they can be used to add special data to elements.
Parameters
key : String | Symbol
value : *
Related:
-
protected inherited
_setStyle( property, [ value ] )
module:engine/view/rooteditableelement~RootEditableElement#_setStyle
Adds style to the element.
element._setStyle( 'color', 'red' ); element._setStyle( { color: 'red', position: 'fixed' } );
Note: This method can work with normalized style names if a particular style processor rule is enabled. See
StylesMap#set()
for details.Parameters
property : String | Object
Property name or object with key - value pairs.
[ value ] : String
Value to set. This parameter is ignored if object is provided as the first parameter.
Fires
Related:
Events
-
inherited
change( eventInfo )
module:engine/view/rooteditableelement~RootEditableElement#event:change
-
inherited
change:attributes( eventInfo, changedNode )
module:engine/view/rooteditableelement~RootEditableElement#event:change:attributes
Fired when list of elements attributes changes.
Change event is bubbled – it is fired on all ancestors.
Parameters
-
inherited
change:children( eventInfo, changedNode )
module:engine/view/rooteditableelement~RootEditableElement#event:change:children
Fired when list of elements children changes.
Change event is bubbled – it is fired on all ancestors.
Parameters
-
inherited
change:isFocused( eventInfo, name, value, oldValue )
module:engine/view/rooteditableelement~RootEditableElement#event:change:isFocused
Fired when the
isFocused
property changed value.Parameters
eventInfo : EventInfo
An object containing information about the fired event.
name : String
Name of the changed property (
isFocused
).value : Boolean
New value of the
isFocused
property with given key ornull
, if operation should remove property.oldValue : Boolean
Old value of the
isFocused
property with given key ornull
, if property was not set before.
-
inherited
change:isReadOnly( eventInfo, name, value, oldValue )
module:engine/view/rooteditableelement~RootEditableElement#event:change:isReadOnly
Fired when the
isReadOnly
property changed value.Parameters
eventInfo : EventInfo
An object containing information about the fired event.
name : String
Name of the changed property (
isReadOnly
).value : Boolean
New value of the
isReadOnly
property with given key ornull
, if operation should remove property.oldValue : Boolean
Old value of the
isReadOnly
property with given key ornull
, if property was not set before.
-
inherited
change:text( eventInfo, changedNode )
module:engine/view/rooteditableelement~RootEditableElement#event:change:text
Fired when text nodes data changes.
Change event is bubbled – it is fired on all ancestors.
Parameters
-
mixed
change:{property}( eventInfo, name, value, oldValue )
module:engine/view/rooteditableelement~RootEditableElement#event:change:{property}
Fired when a property changed value.
observable.set( 'prop', 1 ); observable.on( 'change:prop', ( evt, propertyName, newValue, oldValue ) => { console.log( `${ propertyName } has changed from ${ oldValue } to ${ newValue }` ); } ); observable.prop = 2; // -> 'prop has changed from 1 to 2'
Parameters
eventInfo : EventInfo
An object containing information about the fired event.
name : String
The property name.
value : *
The new property value.
oldValue : *
The previous property value.
-
mixed
set:{property}( eventInfo, name, value, oldValue )
module:engine/view/rooteditableelement~RootEditableElement#event:set:{property}
Fired when a property value is going to be set but is not set yet (before the
change
event is fired).You can control the final value of the property by using the event's
return
property.observable.set( 'prop', 1 ); observable.on( 'set:prop', ( evt, propertyName, newValue, oldValue ) => { console.log( `Value is going to be changed from ${ oldValue } to ${ newValue }` ); console.log( `Current property value is ${ observable[ propertyName ] }` ); // Let's override the value. evt.return = 3; } ); observable.on( 'change:prop', ( evt, propertyName, newValue, oldValue ) => { console.log( `Value has changed from ${ oldValue } to ${ newValue }` ); } ); observable.prop = 2; // -> 'Value is going to be changed from 1 to 2' // -> 'Current property value is 1' // -> 'Value has changed from 1 to 3'
Note: The event is fired even when the new value is the same as the old value.
Parameters
eventInfo : EventInfo
An object containing information about the fired event.
name : String
The property name.
value : *
The new property value.
oldValue : *
The previous property value.
Every day, we work hard to keep our documentation complete. Have you spotted outdated information? Is something missing? Please report it via our issue tracker.