From 4f5db77ec2db6c87cb93ceb9f7ea9ab311247f17 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Tue, 24 Sep 2019 15:44:15 +0200 Subject: API documentation for KVision 0.0.39 --- .../-tabulator/index.html | 43 +++++++++++++++++++++- 1 file changed, 41 insertions(+), 2 deletions(-) (limited to 'api/pl.treksoft.kvision.tabulator/-tabulator/index.html') diff --git a/api/pl.treksoft.kvision.tabulator/-tabulator/index.html b/api/pl.treksoft.kvision.tabulator/-tabulator/index.html index bb240e27..b1cec96c 100644 --- a/api/pl.treksoft.kvision.tabulator/-tabulator/index.html +++ b/api/pl.treksoft.kvision.tabulator/-tabulator/index.html @@ -55,7 +55,9 @@

jsTabulator

-var jsTabulator: Tabulator? +var jsTabulator: Tabulator? +

Native Tabulator object.

+ @@ -183,6 +185,16 @@ +

addColumn

+ + +open fun addColumn(columnDefinition: ColumnDefinition<T>, insertRightOfTarget: Boolean? = null, positionTarget: String? = null): Unit
+open fun addColumn(columnDefinition: Tabulator.ColumnDefinition, insertRightOfTarget: Boolean? = null, positionTarget: String? = null): Unit +

Add new column to the tabulator.

+ + + +

afterDestroy

@@ -255,6 +267,15 @@ +

deleteColumn

+ + +open fun deleteColumn(name: String): Unit +

Delete column by name.

+ + + +

deselectRow

@@ -264,6 +285,15 @@ +

getColumn

+ + +open fun getColumn(name: String): Tabulator.ColumnComponent? +

Get column component by name.

+ + + +

getData

@@ -303,7 +333,7 @@

getHtml

-open fun getHtml(activeOnly: Boolean = false): String? +open fun getHtml(activeOnly: Boolean = false, isStyled: Boolean = false, htmlOutputConfig: dynamic = null): String?

Get the HTML code of the table.

@@ -435,6 +465,15 @@ +

print

+ + +open fun print(activeOnly: Boolean = false, isStyled: Boolean = false, printConfig: dynamic = null): Unit? +

Print the table.

+ + + +

redo

-- cgit