amanda.hinchman-dominguez
10/01/2018, 10:38 PMjava.lang.IllegalArgumentException: Parameter specified as non-null is null: method tornadofx.FXKt.find, parameter scope
at tornadofx.FXKt.find(FX.kt)
amanda.hinchman-dominguez
10/01/2018, 10:39 PMcollection
bj0
10/02/2018, 12:54 AMchildren.forEach {}
, but it doesn't seem to work on a buttonbar
bj0
10/02/2018, 12:57 AM.buttons
edvin
10/02/2018, 6:15 AMfind
a UIComponent
, it will inherit the scope you created it in, so no need to pass the scope itself.edvin
10/02/2018, 6:17 AMeditPerson
just creates one instance of PersonModel
and inserts the person
passed in into the model. Then it creates a new scope and puts the personmodel into that scope. Then an instance of PersonEditor
is located within the newly created scope. That means that the PersonEditor
instance can now inject PersonModel
and it will get the instance that was set into it's scope.edvin
10/02/2018, 6:26 AMSiebelsTim
10/02/2018, 7:36 AMseiv
10/02/2018, 9:32 AMRomanow
10/02/2018, 10:10 AMRomanow
10/02/2018, 10:12 AMSiebelsTim
10/02/2018, 10:29 AMedvin
10/02/2018, 11:00 AMseiv
10/02/2018, 11:04 AMedvin
10/02/2018, 11:09 AMnimakro
10/02/2018, 1:16 PMmariofelesdossantosjr
10/02/2018, 1:49 PMmariofelesdossantosjr
10/02/2018, 1:49 PMcarlw
10/02/2018, 4:06 PMcarlw
10/03/2018, 10:19 AMmikehearn
10/03/2018, 1:04 PMcarlw
10/03/2018, 1:47 PMValV
10/03/2018, 2:00 PMcarlw
10/03/2018, 2:02 PMValV
10/03/2018, 2:08 PMValV
10/03/2018, 5:59 PMTreeView
, while populate
function returns MutableSet
from a map?ValV
10/03/2018, 6:01 PMpopulate { when { parent == root -> myMap.keys; else -> null } }
ValV
10/03/2018, 6:03 PMmyMap
does not affect TreeView
ValV
10/03/2018, 6:07 PMmyMap.keys.toList().observable()
or myMap.keys.observable()
, does not affect eitherValV
10/03/2018, 6:07 PMmyMap
is ObservableMap