class UIAnimatedCell
A view class that represents a cell with animated style updates.
class UIAnimatedCell extends UICell
Description
An animated cell container functions like a regular cell container (see UICell), but shows animations for all style-related updates where possible.
Constructor
- constructor(…content)Creates a new container view object with the provided view content.
Instance Members
- applyViewPreset(preset)Applies the provided preset properties to this object.
- animationDurationDuration of all style update animations.
- animationTimingTiming curve of all style update animations.
Inherited Members
- textDirectionText direction (rtl or ltr) for all components within this cell.
- marginAdditional space to be added around the entire cell, in pixels or CSS length with unit, or an object with separate offset values.
- borderRadiusBorder radius, in pixels or CSS length with unit.
- backgroundCell background color, defaults to undefined (no fill).
- textColorText color for labels within this cell.
- opacityOpacity level (0–1), defaults to undefined (opaque).
- effectAn output effect that will be applied when the cell is rendered.
- styleThe style to be applied to this cell.
- findViewContent(type)Implementation of View.findViewContent() that searches within this container.
- delegateContentEvent(event, emitDelegate?) protectedDelegates events from content view objects.
- content readonlyThe list of all content view objects.
- layoutOptions related to layout of content components within this container.
- paddingPadding around contained elements, in pixels or CSS length with unit, or an object with separate offset values.
- spacingSpace between components, in pixels or CSS length with unit.
- asyncContentRenderingTrue if content views should be rendered asynchronously.
- allowFocusTrue if this container itself may receive direct input focus.
- allowKeyboardFocusTrue if this container itself may receive input focus using the keyboard (e.g. Tab key).
- hiddenTrue if the component should be hidden from view.
- positionOptions related to the position of this component.
- accessibleRoleWAI-ARIA role for this component, if applicable.
- accessibleLabelWAI-ARIA label text for this component (not tooltip), if applicable.
- requestFocus()Requests input focus on this component.
- requestFocusNext()Requests input focus for the next sibling component.
- requestFocusPrevious()Requests input focus for the previous sibling component.
- render(callback)Triggers asynchronous rendering for this component, and all contained components, if any.
- lastRenderOutputLast rendered output, if any; set by the UI component renderer.
- emit(event)Emits an event, immediately calling all event handlers.
- emitChange(name?, data?)Emits a change event, an instance of ManagedChangeEvent.
- listen(handler)Adds a handler for all events emitted by this object.
- isUnlinked()Returns true if the object has been unlinked.
- unlink()Unlinks this managed object.
- beforeUnlink() protectedA method that’s called immediately before unlinking an object, can be overridden.
- attach(target, observer?) protectedAttaches the provided managed object to this object.
- autoAttach(propertyName, observer?) protectedObserves a property, so that any object assigned to it is attached immediately.