TabulatorRemote

open class TabulatorRemote<T : Any, E : Any>(serviceManager: <ERROR CLASS><E>, function: suspend E.(Int?, Int?, List<<ERROR CLASS>>?, List<<ERROR CLASS>>?, String?) -> <ERROR CLASS><T>, stateFunction: () -> String?, options: TabulatorOptions<T>, types: Set<TableType>, classes: Set<String>, kClass: KClass<T>?) : Tabulator<T>

Tabulator component connected to the multiplatform service.

Parameters

T

type of row data

E

type of service manager

serviceManager

multiplatform service manager

function

multiplatform service method returning tabulator rows data

stateFunction

a function to generate the state object passed with the remote request

options

tabulator options

types

a set of table types

classes

a set of CSS class names

Constructors

TabulatorRemote
Link copied to clipboard
js
fun <T : Any, E : Any> TabulatorRemote(serviceManager: <ERROR CLASS><E>, function: suspend E.(Int?, Int?, List<<ERROR CLASS>>?, List<<ERROR CLASS>>?, String?) -> <ERROR CLASS><T>, stateFunction: () -> String? = null, options: TabulatorOptions<T> = TabulatorOptions(), types: Set<TableType> = setOf(), classes: Set<String> = setOf(), kClass: KClass<T>? = null)

Functions

addAfterDestroyHook
Link copied to clipboard
js
open override fun addAfterDestroyHook(hook: () -> Unit): <ERROR CLASS>
The supplied function is called after the widget is removed from the DOM.
addAfterInsertHook
Link copied to clipboard
js
open override fun addAfterInsertHook(hook: (<ERROR CLASS>) -> Unit): <ERROR CLASS>
The supplied function is called after the widget is inserted into the DOM.
addBeforeDisposeHook
Link copied to clipboard
js
open override fun addBeforeDisposeHook(hook: () -> Unit): <ERROR CLASS>
The supplied function is called before the widget is disposed.
addColumn
Link copied to clipboard
js
open fun addColumn(columnDefinition: ColumnDefinition<T>, insertRightOfTarget: Boolean? = null, positionTarget: String? = null)
Add new column to the tabulator.
open fun addColumn(columnDefinition: Tabulator.ColumnDefinition, insertRightOfTarget: Boolean? = null, positionTarget: String? = null)
Add new column to the tabulator.
addCssClass
Link copied to clipboard
js
open override fun addCssClass(css: String): Widget
Adds given value to the set of CSS classes generated in html code of current component.
addCssStyle
Link copied to clipboard
js
open override fun addCssStyle(css: Style): Widget
Adds given style object to the set of CSS classes generated in html code of current component.
addSurroundingCssClass
Link copied to clipboard
js
open override fun addSurroundingCssClass(css: String): Widget
Adds given value to the set of CSS classes generated in html code of parent component.
addSurroundingCssStyle
Link copied to clipboard
js
open override fun addSurroundingCssStyle(css: Style): Widget
Adds given style object to the set of CSS classes generated in html code of parent component.
animate
Link copied to clipboard
js
open fun animate(duration: Int = 400, easing: Easing = Easing.SWING, complete: () -> Unit? = null, styles: StyledComponent.() -> Unit)
Animate the widget changing CSS properties.
applyFilter
Link copied to clipboard
js
open fun applyFilter()
Applies the current filter.
blur
Link copied to clipboard
js
open fun blur()
Makes the element blur.
clearData
Link copied to clipboard
js
open fun clearData(): Unit?
Clears the data in the table.
clearDragDropData
Link copied to clipboard
js
open fun clearDragDropData()
Clears D&D data for the current widget.
clearFilter
Link copied to clipboard
js
open fun clearFilter(includeHeaderFilters: Boolean = true)
Clears current filters.
clearHeaderFilter
Link copied to clipboard
js
open fun clearHeaderFilter()
Clears header filters.
clearSort
Link copied to clipboard
js
open fun clearSort()
Clears current sort.
deleteColumn
Link copied to clipboard
js
open fun deleteColumn(name: String)
Delete column by name.
deselectRow
Link copied to clipboard
js
open fun deselectRow(row: dynamic = undefined)
Deselect the row.
disablePopover
Link copied to clipboard
js
open fun disablePopover(): Widget
Disables popover for the current widget.
disableTooltip
Link copied to clipboard
js
open fun disableTooltip(): Widget
Disables tooltip for the current widget.
downloadCSV
Link copied to clipboard
js
open fun downloadCSV(fileName: String? = null, dataSet: RowRangeLookup = RowRangeLookup.ACTIVE, delimiter: Char = ',', includeBOM: Boolean = false, newTab: Boolean = false): Unit?
Download the table content as CSV
downloadHTML
Link copied to clipboard
js
open fun downloadHTML(fileName: String? = null, dataSet: RowRangeLookup = RowRangeLookup.ACTIVE, style: Boolean = false, newTab: Boolean = false): Unit?
Download the table content as HTML
downloadJSON
Link copied to clipboard
js
open fun downloadJSON(fileName: String? = null, dataSet: RowRangeLookup = RowRangeLookup.ACTIVE, newTab: Boolean = false): Unit?
Download the table content as JSON
enablePopover
Link copied to clipboard
js
open fun enablePopover(options: PopoverOptions = PopoverOptions()): Widget
Enables popover for the current widget.
enableTooltip
Link copied to clipboard
js
open fun enableTooltip(options: TooltipOptions = TooltipOptions()): Widget
Enables tooltip for the current widget.
fadeIn
Link copied to clipboard
js
open fun fadeIn(duration: Int = 400, easing: Easing = Easing.SWING, complete: () -> Unit? = null): Widget
Shows current widget with fade in effect.
fadeOut
Link copied to clipboard
js
open fun fadeOut(duration: Int = 400, easing: Easing = Easing.SWING, complete: () -> Unit? = null): Widget
Hides current widget with fade out effect.
focus
Link copied to clipboard
js
open fun focus()
Makes the element focused.
getAttribute
Link copied to clipboard
js
open override fun getAttribute(name: String): String?
Returns the value of an additional attribute.
getColumn
Link copied to clipboard
js
open fun getColumn(name: String): Tabulator.ColumnComponent?
Get column component by name.
getData
Link copied to clipboard
js
open fun getData(rowRangeLookup: RowRangeLookup? = null): List<T>?
Returns the current data in the table.
getDataCount
Link copied to clipboard
js
open fun getDataCount(rowRangeLookup: RowRangeLookup? = null): Int
Get the number of data rows.
getElement
Link copied to clipboard
js
open override fun getElement(): <ERROR CLASS>?
Returns DOM element bound to the current component.
getElementJQuery
Link copied to clipboard
js
open override fun getElementJQuery(): <ERROR CLASS>?
Returns JQuery element bound to the current component.
getElementJQueryD
Link copied to clipboard
js
open override fun getElementJQueryD(): dynamic
Returns JQuery element bound to the current component as a dynamic type.
getHistoryRedoSize
Link copied to clipboard
js
open fun getHistoryRedoSize(): Int
Get the number of history redo actions available.
getHistoryUndoSize
Link copied to clipboard
js
open fun getHistoryUndoSize(): Int
Get the number of history undo actions available.
getHtml
Link copied to clipboard
js
open fun getHtml(rowRangeLookup: RowRangeLookup, isStyled: Boolean = false, htmlOutputConfig: dynamic = null): String?
Get the HTML code of the table.
getPage
Link copied to clipboard
js
open fun getPage(): Int
Returns current page number.
getPageMax
Link copied to clipboard
js
open fun getPageMax(): Int
Returns number of pages.
getPageSize
Link copied to clipboard
js
open fun getPageSize(): Int
Returns the size of a page.
getSelectedData
Link copied to clipboard
js
open fun getSelectedData(): List<T>
Returns the selected data in the table.
getSelectedRows
Link copied to clipboard
js
open fun getSelectedRows(): List<Tabulator.RowComponent>
Returns the selected rows.
getSnStyle
Link copied to clipboard
js
open fun getSnStyle(): List<<ERROR CLASS><String, String>>
Returns the list of String pairs defining CSS style attributes and their values.
getStyle
Link copied to clipboard
js
fun getStyle(name: String): String?
Returns the value of a custom CSS style.
hasCssClass
Link copied to clipboard
js
open override fun hasCssClass(css: String): Boolean
Checks whether the given value is present in the set of CSS classes.
hide
Link copied to clipboard
js
open fun hide(): Widget
Makes current widget invisible.
hideAnim
Link copied to clipboard
js
open fun hideAnim(duration: Int = 400, easing: Easing = Easing.SWING, complete: () -> Unit? = null): Widget
Hides current widget with animation effect.
hidePopover
Link copied to clipboard
js
open fun hidePopover(): Widget
Hides popover for the current widget.
hideTooltip
Link copied to clipboard
js
open fun hideTooltip(): Widget
Hides tooltip for the current widget.
navigateDown
Link copied to clipboard
js
open fun navigateDown()
Navigate to the same cell in the row below.
navigateLeft
Link copied to clipboard
js
open fun navigateLeft()
Navigate to the cell on the left.
navigateNext
Link copied to clipboard
js
open fun navigateNext()
Navigate to the next cell.
navigatePrev
Link copied to clipboard
js
open fun navigatePrev()
Navigate to the previous cell.
navigateRight
Link copied to clipboard
js
open fun navigateRight()
Navigate to the cell on the right.
navigateUp
Link copied to clipboard
js
open fun navigateUp()
Navigate to the same cell in the row above.
nextPage
Link copied to clipboard
js
open fun nextPage()
Navigate to the next page.
previousPage
Link copied to clipboard
js
open fun previousPage()
Navigate to the previous page.
print
Link copied to clipboard
js
open fun print(rowRangeLookup: RowRangeLookup, isStyled: Boolean = false, printConfig: dynamic = null): Unit?
Print the table.
redo
Link copied to clipboard
js
open fun redo(): Boolean
Redo the last undone user action.
redraw
Link copied to clipboard
js
open fun redraw(force: Boolean = false)
Redraw the table (e.g.
reload
Link copied to clipboard
js
open fun reload()
Reload table data.
removeAttribute
Link copied to clipboard
js
open override fun removeAttribute(name: String): Widget
Removes the value of additional attribute.
removeCssClass
Link copied to clipboard
js
open override fun removeCssClass(css: String): Widget
Removes given value from the set of CSS classes generated in html code of current component.
removeCssStyle
Link copied to clipboard
js
open override fun removeCssStyle(css: Style): Widget
Removes given style object from the set of CSS classes generated in html code of current component.
removeEventListener
Link copied to clipboard
js
open fun removeEventListener(id: Int): Widget
Removes event listener from current widget.
removeEventListeners
Link copied to clipboard
js
open fun removeEventListeners(): Widget
Removes all event listeners from current widget.
removeStyle
Link copied to clipboard
js
fun removeStyle(name: String): StyledComponent
Removes the value of a custom CSS style.
removeSurroundingCssClass
Link copied to clipboard
js
open override fun removeSurroundingCssClass(css: String): Widget
Removes given value from the set of CSS classes generated in html code of parent component.
removeSurroundingCssStyle
Link copied to clipboard
js
open override fun removeSurroundingCssStyle(css: Style): Widget
Removes given style object from the set of CSS classes generated in html code of parent component.
replaceData
Link copied to clipboard
js
open fun replaceData(data: Array<T>)
Silently replaces the data in a table.
scrollToRow
Link copied to clipboard
js
open fun scrollToRow(row: Int, position: RowPosition? = null, ifVisible: Boolean? = null)
Scroll to the row given by id.
selectRow
Link copied to clipboard
js
open fun selectRow(row: dynamic = undefined)
Select the row.
setAttribute
Link copied to clipboard
js
open override fun setAttribute(name: String, value: String): Widget
Sets the value of additional attribute.
setData
Link copied to clipboard
js
open fun setData(data: Array<T>)
Sets new data in a table.
setDragDropData
Link copied to clipboard
js
open fun setDragDropData(format: String, data: String)
Sets D&D data for the current widget.
setDropTarget
Link copied to clipboard
js
open fun setDropTarget(format: String, callback: (<ERROR CLASS>) -> Unit)
Sets the current widget as a D&D drop target.
open fun setDropTarget(formats: Set<String>? = null, callback: (<ERROR CLASS>) -> Unit)
Sets the current widget as a D&D drop target.
setDropTargetData
Link copied to clipboard
js
open fun setDropTargetData(format: String, callback: (String?) -> Unit)
Sets the current widget as a D&D drop target with helper callback accepting String data.
setEventListener
Link copied to clipboard
js
open fun <T : Widget> setEventListener(block: SnOn<T>.() -> Unit): Int
Sets an event listener for current widget, keeping the actual type of component.
setFilter
Link copied to clipboard
js
open fun setFilter(filter: (T) -> Boolean)
Sets the external filter for the data.
setHeight
Link copied to clipboard
js
open fun setHeight(height: Int)
Change the height of the table.
setPage
Link copied to clipboard
js
open fun setPage(page: Int)
Shows given page.
setPageSize
Link copied to clipboard
js
open fun setPageSize(size: Int)
Set the size of a page.
setPageToRow
Link copied to clipboard
js
open fun setPageToRow(row: Int)
Shows page with a row given by id.
setStyle
Link copied to clipboard
js
fun setStyle(name: String, value: String): StyledComponent
Sets the value of a custom CSS style.
show
Link copied to clipboard
js
open fun show(): Widget
Makes current widget visible.
showAnim
Link copied to clipboard
js
open fun showAnim(duration: Int = 400, easing: Easing = Easing.SWING, complete: () -> Unit? = null): Widget
Shows current widget with animation effect.
showPopover
Link copied to clipboard
js
open fun showPopover(): Widget
Shows popover for the current widget.
showTooltip
Link copied to clipboard
js
open fun showTooltip(): Widget
Shows tooltip for the current widget.
singleRender
Link copied to clipboard
js
open override fun <T> singleRender(block: () -> T): T
Executes given function within a single rendering process.
singleRenderAsync
Link copied to clipboard
js
open override fun singleRenderAsync(block: () -> Unit)
Executes given function within a single rendering process asynchronously.
slideDown
Link copied to clipboard
js
open fun slideDown(duration: Int = 400, easing: Easing = Easing.SWING, complete: () -> Unit? = null): Widget
Shows current widget with slide down effect.
slideUp
Link copied to clipboard
js
open fun slideUp(duration: Int = 400, easing: Easing = Easing.SWING, complete: () -> Unit? = null): Widget
Hides current widget with slide up effect.
toggleSelectRow
Link copied to clipboard
js
open fun toggleSelectRow(row: dynamic = undefined)
Toggle selection status of the row.
toggleVisible
Link copied to clipboard
js
open fun toggleVisible(): Widget
Toggles visibility of current widget.
undo
Link copied to clipboard
js
open fun undo(): Boolean
Undo the last user action.

Properties

alignContent
Link copied to clipboard
js
open var alignContent: AlignContent?
CSS flexbox/grid content alignment.
alignItems
Link copied to clipboard
js
open var alignItems: AlignItems?
CSS flexbox/grid items alignment.
alignSelf
Link copied to clipboard
js
open var alignSelf: AlignItems?
CSS flexbox items self-alignment.
background
Link copied to clipboard
js
open var background: Background?
Background of the current component.
border
Link copied to clipboard
js
open var border: Border?
Border of the current component.
borderBottom
Link copied to clipboard
js
open var borderBottom: Border?
Bottom border of the current component.
borderLeft
Link copied to clipboard
js
open var borderLeft: Border?
Left border of the current component.
borderRadius
Link copied to clipboard
js
open var borderRadius: <ERROR CLASS><Number, UNIT>?
CSS border radius.
borderRadiusList
Link copied to clipboard
js
open var borderRadiusList: List<<ERROR CLASS><Number, UNIT>>?
List of CSS border radius values.
borderRight
Link copied to clipboard
js
open var borderRight: Border?
Right border of the current component.
borderTop
Link copied to clipboard
js
open var borderTop: Border?
Top border of the current component.
bottom
Link copied to clipboard
js
open var bottom: <ERROR CLASS><Number, UNIT>?
Bottom edge of the current component.
boxShadow
Link copied to clipboard
js
open var boxShadow: BoxShadow?
Box shadow of the current component.
boxShadowList
Link copied to clipboard
js
open var boxShadowList: List<BoxShadow>?
List of box shadows of the current component.
clear
Link copied to clipboard
js
open var clear: Clear?
CSS clear float of the current component.
color
Link copied to clipboard
js
open var color: Color?
Text color for the current component.
colorHex
Link copied to clipboard
js
open var colorHex: Int?
Text color for the current component given in hex format (write only).
colorName
Link copied to clipboard
js
open var colorName: Col?
Text color for the current component given with named constant (write only).
cursor
Link copied to clipboard
js
open var cursor: Cursor?
CSS cursor shape over the current component.
display
Link copied to clipboard
js
open var display: Display?
CSS display of the current component.
draggable
Link copied to clipboard
js
var draggable: Boolean?
Determines if the current widget is draggable.
eventTarget
Link copied to clipboard
js
var eventTarget: Widget?
flexBasis
Link copied to clipboard
js
open var flexBasis: <ERROR CLASS><Number, UNIT>?
CSS flexbox item basis.
flexDirection
Link copied to clipboard
js
open var flexDirection: FlexDirection?
CSS flexbox direction.
flexGrow
Link copied to clipboard
js
open var flexGrow: Int?
CSS flexbox item grow.
flexShrink
Link copied to clipboard
js
open var flexShrink: Int?
CSS flexbox item shrink.
flexWrap
Link copied to clipboard
js
open var flexWrap: FlexWrap?
CSS flexbox wrap mode.
float
Link copied to clipboard
js
open var float: PosFloat?
CSS position float of the current component.
fontFamily
Link copied to clipboard
js
open var fontFamily: String?
CSS font family of the current component.
fontSize
Link copied to clipboard
js
open var fontSize: <ERROR CLASS><Number, UNIT>?
CSS font size of the current component.
fontStyle
Link copied to clipboard
js
open var fontStyle: FontStyle?
CSS font style of the current component.
fontVariant
Link copied to clipboard
js
open var fontVariant: FontVariant?
CSS font variant of the current component.
fontWeight
Link copied to clipboard
js
open var fontWeight: FontWeight?
CSS font weight of the current component.
gridArea
Link copied to clipboard
js
open var gridArea: String?
CSS grid area.
gridAutoColumns
Link copied to clipboard
js
open var gridAutoColumns: String?
CSS grid auto columns.
gridAutoFlow
Link copied to clipboard
js
open var gridAutoFlow: GridAutoFlow?
CSS grid auto flow.
gridAutoRows
Link copied to clipboard
js
open var gridAutoRows: String?
CSS grid auto rows.
gridColumnEnd
Link copied to clipboard
js
open var gridColumnEnd: String?
CSS grid column end.
gridColumnGap
Link copied to clipboard
js
open var gridColumnGap: Int?
CSS grid column gap.
gridColumnStart
Link copied to clipboard
js
open var gridColumnStart: Int?
CSS grid column start.
gridRowEnd
Link copied to clipboard
js
open var gridRowEnd: String?
CSS grid row end.
gridRowGap
Link copied to clipboard
js
open var gridRowGap: Int?
CSS grid row gap.
gridRowStart
Link copied to clipboard
js
open var gridRowStart: Int?
CSS grid row start.
gridTemplateAreas
Link copied to clipboard
js
open var gridTemplateAreas: List<String>?
CSS grid areas template.
gridTemplateColumns
Link copied to clipboard
js
open var gridTemplateColumns: String?
CSS grid columns template.
gridTemplateRows
Link copied to clipboard
js
open var gridTemplateRows: String?
CSS grid rows template.
height
Link copied to clipboard
js
open var height: <ERROR CLASS><Number, UNIT>?
Height of the current component.
id
Link copied to clipboard
js
var id: String?
An ID attribute of generated HTML element.
jsTabulator
Link copied to clipboard
js
var jsTabulator: Tabulator?
Native Tabulator object.
justifyContent
Link copied to clipboard
js
open var justifyContent: JustifyContent?
CSS flexbox/grid content justification.
justifyItems
Link copied to clipboard
js
open var justifyItems: JustifyItems?
CSS grid items justification.
justifySelf
Link copied to clipboard
js
open var justifySelf: JustifyItems?
CSS grid items self-justification.
left
Link copied to clipboard
js
open var left: <ERROR CLASS><Number, UNIT>?
Left edge of the current component.
letterSpacing
Link copied to clipboard
js
open var letterSpacing: <ERROR CLASS><Number, UNIT>?
CSS Text letter spacing of the current component.
lineBreak
Link copied to clipboard
js
open var lineBreak: LineBreak?
CSS line break of the current component.
lineHeight
Link copied to clipboard
js
open var lineHeight: <ERROR CLASS><Number, UNIT>?
CSS Text line height of the current component.
margin
Link copied to clipboard
js
open var margin: <ERROR CLASS><Number, UNIT>?
Margin of the current component.
marginBottom
Link copied to clipboard
js
open var marginBottom: <ERROR CLASS><Number, UNIT>?
Bottom margin of the current component.
marginLeft
Link copied to clipboard
js
open var marginLeft: <ERROR CLASS><Number, UNIT>?
Left margin of the current component.
marginRight
Link copied to clipboard
js
open var marginRight: <ERROR CLASS><Number, UNIT>?
Right margin of the current component.
marginTop
Link copied to clipboard
js
open var marginTop: <ERROR CLASS><Number, UNIT>?
Top margin of the current component.
maxHeight
Link copied to clipboard
js
open var maxHeight: <ERROR CLASS><Number, UNIT>?
Maximal height of the current component.
maxWidth
Link copied to clipboard
js
open var maxWidth: <ERROR CLASS><Number, UNIT>?
Maximal width of the current component.
minHeight
Link copied to clipboard
js
open var minHeight: <ERROR CLASS><Number, UNIT>?
Minimal height of the current component.
minWidth
Link copied to clipboard
js
open var minWidth: <ERROR CLASS><Number, UNIT>?
Minimal width of the current component.
opacity
Link copied to clipboard
js
open var opacity: Double?
Opacity of the current component.
options
Link copied to clipboard
js
val options: TabulatorOptions<T>
tabulator options
order
Link copied to clipboard
js
open var order: Int?
CSS flexbox item order.
outline
Link copied to clipboard
js
open var outline: Outline?
Outline of the current component.
overflow
Link copied to clipboard
js
open var overflow: Overflow?
CSS overflow of the current component.
overflowWrap
Link copied to clipboard
js
open var overflowWrap: OverflowWrap?
CSS overflow-wrap of the current component.
padding
Link copied to clipboard
js
open var padding: <ERROR CLASS><Number, UNIT>?
Padding of the current component.
paddingBottom
Link copied to clipboard
js
open var paddingBottom: <ERROR CLASS><Number, UNIT>?
Bottom padding of the current component.
paddingLeft
Link copied to clipboard
js
open var paddingLeft: <ERROR CLASS><Number, UNIT>?
Left padding of the current component.
paddingRight
Link copied to clipboard
js
open var paddingRight: <ERROR CLASS><Number, UNIT>?
Right padding of the current component.
paddingTop
Link copied to clipboard
js
open var paddingTop: <ERROR CLASS><Number, UNIT>?
Top padding of the current component.
parent
Link copied to clipboard
js
open override var parent: Container?
Parent of the current component.
position
Link copied to clipboard
js
open var position: Position?
CSS position of the current component.
resize
Link copied to clipboard
js
open var resize: Resize?
CSS resize of the current component.
right
Link copied to clipboard
js
open var right: <ERROR CLASS><Number, UNIT>?
Right edge of the current component.
role
Link copied to clipboard
js
var role: String?
A role attribute of generated HTML element.
tabindex
Link copied to clipboard
js
var tabindex: Int?
A tabindex attribute of generated HTML element.
textAlign
Link copied to clipboard
js
open var textAlign: TextAlign?
CSS Text align of the current component.
textDecoration
Link copied to clipboard
js
open var textDecoration: TextDecoration?
CSS Text decoration of the current component.
textDirection
Link copied to clipboard
js
open var textDirection: Direction?
CSS Text direction of the current component.
textIndent
Link copied to clipboard
js
open var textIndent: <ERROR CLASS><Number, UNIT>?
CSS Text indent of the current component.
textOverflow
Link copied to clipboard
js
open var textOverflow: TextOverflow?
CSS Text overflow of the current component.
textShadow
Link copied to clipboard
js
open var textShadow: TextShadow?
CSS Text shadow of the current component.
textTransform
Link copied to clipboard
js
open var textTransform: TextTransform?
CSS Text transform of the current component.
title
Link copied to clipboard
js
var title: String?
A title attribute of generated HTML element.
top
Link copied to clipboard
js
open var top: <ERROR CLASS><Number, UNIT>?
Top edge of the current component.
transition
Link copied to clipboard
js
open var transition: Transition?
CSS transition effect for the current component.
transitionList
Link copied to clipboard
js
open var transitionList: List<Transition>?
List of CSS transition effects for the current component.
types
Link copied to clipboard
js
var types: Set<TableType>
Table types.
unicodeBidi
Link copied to clipboard
js
open var unicodeBidi: UnicodeBidi?
CSS Text unicode-bidi of the current component.
verticalAlign
Link copied to clipboard
js
open var verticalAlign: VerticalAlign?
CSS Text vertical align of the current component.
visible
Link copied to clipboard
js
open override var visible: Boolean
Visibility state of the current component.
whiteSpace
Link copied to clipboard
js
open var whiteSpace: WhiteSpace?
CSS Text white space of the current component.
width
Link copied to clipboard
js
open var width: <ERROR CLASS><Number, UNIT>?
Width of the current component.
wordBreak
Link copied to clipboard
js
open var wordBreak: WordBreak?
CSS word break of the current component.
wordSpacing
Link copied to clipboard
js
open var wordSpacing: <ERROR CLASS><Number, UNIT>?
CSS Text word spacing of the current component.
zIndex
Link copied to clipboard
js
open var zIndex: Int?
Z-index of the current component.