mikehearn
04/13/2018, 8:25 PMmikehearn
04/13/2018, 8:30 PMcarlw
04/13/2018, 8:54 PMcarlw
04/13/2018, 8:55 PManidotnet
04/14/2018, 5:43 PMStylesheet
modular? Say I have a core-module and 2 plugin modules. I want to create the final stylesheet by aggregating the stylesheet definitions from crore and other 2 plugin modules. Can it be done by the DSL or do I have to use css file only?Ruckus
04/14/2018, 10:20 PMStylesheet
has a vararg
constructor parameter for stylesheets to include.Ruckus
04/14/2018, 10:23 PManidotnet
04/15/2018, 1:07 AMJuan
04/15/2018, 4:30 AMedvin
04/15/2018, 7:55 AMcheckBox
and the color constants are in Color
, not Colors
.edvin
04/15/2018, 8:05 AMedvin
04/15/2018, 8:09 AMedvin
04/15/2018, 8:09 AMtext { textFill =
edvin
04/15/2018, 8:10 AMand
as well. You used it correctly for and(selected)
, but you just want to target mark and box inside the selected checkbox, so this is my suggestion:jtonic
04/15/2018, 8:46 AMclass MainWorkspace : Workspace(navigationMode = NavigationMode.Tabs) {
...
init {
...
private val popOver: PopOver = PopOver(
label {
text = "This allows the configuration of the:"
}
).apply {
fadeInDuration = Duration.millis(700.0)
fadeInDuration = Duration.millis(700.0)
}
…
}
… but the content of the popOver is displayed in the Workspace, which looking at the source code is normal.
Moreover, when the content is displayed in the Workspace, somehow, suddenly, the content of the popOver is blank.
For such cases and similar should I fallback to vanilla JavaFX. I would like to somehow use the TornadoFX UI DSL type-safe builders but been able to pass another parent of the generated UI.
http://fxexperience.com/controlsfx/features/#popoverjtonic
04/15/2018, 8:49 AMaltavir
04/15/2018, 10:22 AMtreeTableVeiw
and I want to apply style to make row borders visible and different background colors to odd and even rows. I can't apply the style sheet to the App
, and whatever else I do does not seem to work. I supposed that all I needed to do was to create a Stylesheet member and then to add it to treeTableView
via addClass
. Does not seem to work.altavir
04/15/2018, 10:30 AMaltavir
04/15/2018, 10:48 AMstyle{}
or addStyle{}
. It is not that obvious.Juan
04/15/2018, 3:42 PMCssClass
, I perfectly understand the use of and()
, but I was trying a lot of different approaches to find out why it wasn't working, even the code you posted wasn't working either. I found out that I missed adding the stylesheet to my view.🙄😂 Thank you!edvin
04/16/2018, 7:23 AM--di-container=classname
command line parameter if you want to configure the di container from the command line. UI coming to the idea plugin as well. Nice when you want to run a View that requires a custom DI containertieskedh
04/16/2018, 7:27 PMJuan
04/16/2018, 8:09 PMJuan
04/16/2018, 8:09 PMafter.png▾
edvin
04/16/2018, 8:46 PMtieskedh
04/16/2018, 8:47 PMedvin
04/16/2018, 8:53 PMJuan
04/17/2018, 3:49 AMedvin
04/17/2018, 6:52 AM