From 8883419bfcec00947863741d48dbd89cc877615a Mon Sep 17 00:00:00 2001
From: Robert Jaros
+ + | +
+val isFirstRoot: Boolean |
+
+ + | +
+var popoverOptions: PopoverOptions? |
+|
@@ -93,6 +100,13 @@ | ||
+ + | +
+var tooltipOptions: TooltipOptions? |
+|
@@ -189,6 +203,8 @@ |
open fun addCssClass(css: String): Widget
Adds given value to the set of CSS classes generated in html code of current component. +open fun addCssClass(css: Style): Widget
+Adds given style object to the set of CSS classes generated in html code of current component. |
|
open fun addSurroundingCssClass(css: String): Widget
Adds given value to the set of CSS classes generated in html code of parent component. +open fun addSurroundingCssClass(css: Style): Widget
+Adds given style object to the set of CSS classes generated in html code of parent component. |
||
+ + | +
+open fun disablePopover(): Widget
+Disables popover for the current widget. + |
+|
+ + | +
+open fun disableTooltip(): Widget
+Disables tooltip for the current widget. + |
+|
@@ -254,6 +290,24 @@ | ||
+ + | +
+open fun enablePopover(options: PopoverOptions = PopoverOptions()): Widget
+Enables popover for the current widget. + |
+|
+ + | +
+open fun enableTooltip(options: TooltipOptions = TooltipOptions()): Widget
+Enables tooltip for the current widget. + |
+|
@@ -326,6 +380,24 @@ | ||
+ + | +
+open fun hidePopover(): Widget
+Hides popover for the current widget. + |
+|
+ + | +
+open fun hideTooltip(): Widget
+Hides tooltip for the current widget. + |
+|
@@ -340,6 +412,8 @@ |
open fun removeCssClass(css: String): Widget
Removes given value from the set of CSS classes generated in html code of current component. +open fun removeCssClass(css: Style): Widget
+Removes given style object from the set of CSS classes generated in html code of current component. |
|
open fun removeSurroundingCssClass(css: String): Widget
Removes given value from the set of CSS classes generated in html code of parent component. +open fun removeSurroundingCssClass(css: Style): Widget
+Removes given style object from the set of CSS classes generated in html code of parent component. |
||
+ + | +
+open fun showPopover(): Widget
+Shows popover for the current widget. + |
+|
+ + | +
+open fun showTooltip(): Widget
+Shows tooltip for the current widget. + |
+|
-- cgit |