amanda.hinchman-dominguez
09/19/2018, 7:06 AMKevin
09/19/2018, 7:27 AMKevin
09/19/2018, 7:27 AMamanda.hinchman-dominguez
09/19/2018, 3:27 PMamanda.hinchman-dominguez
09/19/2018, 3:27 PMbarrongineer
09/19/2018, 8:04 PMSep 19, 2018 3:54:51 PM tornadofx.DefaultErrorHandler uncaughtException
SEVERE: Uncaught error
java.lang.IllegalStateException: No transaction in context.
seiv
09/19/2018, 8:34 PMbkenn
09/19/2018, 8:39 PMbarrongineer
09/19/2018, 8:41 PMfun getAllSeeds(): SizedIterable<Seed> {
var seeds: SizedIterable<Seed> = EmptySizedIterable()
transaction {
seeds = Seed.all()
}
return seeds
}
barrongineer
09/19/2018, 8:42 PMApp
class, but anything outside of that, like calling from a View
is where I have issuesbkenn
09/19/2018, 8:46 PMbarrongineer
09/19/2018, 8:54 PMnate
09/21/2018, 2:51 PMnate
09/21/2018, 2:52 PMnate
09/21/2018, 2:53 PMnate
09/21/2018, 3:02 PMnate
09/21/2018, 3:02 PMnate
09/21/2018, 3:03 PMnate
09/21/2018, 3:18 PMwakingrufus
09/21/2018, 4:51 PMenableWhen("the field is valid")
?seiv
09/21/2018, 7:31 PMtabpane {
tab { add(CodeArea()) } // from richtextfx
tab { button("aaa") }
}
after add(CodeArea())
tab, all other tabs don't display any components... And it worked before, dunno whats wrong now..seiv
09/21/2018, 8:13 PMval fontAwesome = GlyphFontRegistry.font("FontAwesome")
after commenting out this line - no problem with tabs...Nico Smeenk
09/21/2018, 8:34 PMtextFill = Color.BLACK
in some positions but was not able to have it stay black. Is there an easy way to do so?Nico Smeenk
09/21/2018, 9:38 PMmstave
09/22/2018, 9:44 PMjava.lang.NoClassDefFoundError: no/tornado/tornadofx/idea/configurations/TornadoFXConfiguration$TornadoFXConfigurationOptions
at no.tornado.tornadofx.idea.configurations.TornadoFXConfiguration.getOptionsClass(TornadoFXConfiguration.kt:48)
at com.intellij.execution.configurations.RunConfigurationBase.createOptions(RunConfigurationBase.java:61)
…
$ jar tf '183.2635.13/IntelliJ IDEA 2018.3 EAP.app/Contents/lib/idea.jar' | grep ApplicationConfigurationProperties
$
$ jar tf '182.4323.18/IntelliJ IDEA.app/Contents/lib/idea.jar' | grep ApplicationConfigurationOptions
com/intellij/execution/application/ApplicationConfigurationOptions.class
Perhaps Jetbrains changed their API.
The plugin a’splodes on load breaking the ability to run stuffnimakro
09/23/2018, 11:06 AMedvin
09/23/2018, 11:54 AMedvin
09/23/2018, 6:09 PMnimakro
09/23/2018, 7:08 PMValV
09/23/2018, 7:35 PMval myProperty = SimpleObjectProperty("My Data")
myTableColumn.setCellValueFactory { myProperty }
It just shows My Data
text in corresponding column cells. I feel like I'm missing some logic on these observable properties. If properties implement Observable
interface, then there should be some benefit from it. I thought that observable properties after being used by setCellValueFactory
should be automatically updated when I change a text in the cell, or update a text in the cell, when I change property value, but this does not happen. What's wrong with it?