alex
11/28/2018, 4:54 PMalex
11/28/2018, 4:54 PMRuckus
11/28/2018, 4:55 PMSpike Baylor
11/28/2018, 4:58 PMRuckus
11/28/2018, 4:59 PMdynamic
type from JS interop.jchildress
11/29/2018, 12:25 AMjchildress
11/29/2018, 6:17 PMiari
11/29/2018, 10:59 PMiari
11/29/2018, 11:09 PMNikky
11/30/2018, 12:46 AMonChildRemoved
that you can hook into ?abhinay
11/30/2018, 2:48 AMgetChildren()
is an ObservableList
. You can attach a ListChangeListener
to it and then look for change.wasRemoved()
groostav
11/30/2018, 4:03 AMCoroutineScope
for their controllers?groostav
11/30/2018, 4:04 AMClosable
, how can I tie the close()
call into coroutine lifecycles? --Similarly, how best to tie a failed coroutine into the controllers lifecycle?Roman
11/30/2018, 7:05 AMwith(config) {
set("token", account.token)
set("point_name", account.pointName)
save()
}
and all ok, but when i'm press logout button with this code
with(config) {
remove("token")
remove("point_name")
save()
}
and then login again i found that in my config store old data (account instance is updating)Roman
11/30/2018, 7:05 AMRoman
11/30/2018, 7:06 AMRoman
11/30/2018, 7:09 AMcarlw
11/30/2018, 3:32 PMedvin
11/30/2018, 10:08 PMcarlw
11/30/2018, 10:57 PMjchildress
11/30/2018, 11:09 PMcarlw
11/30/2018, 11:10 PMjchildress
11/30/2018, 11:10 PMcarlw
12/01/2018, 1:41 PMjschneider
12/01/2018, 7:35 PMinternal class BindingsTest {
@Test
internal fun testBindings() {
val fooProperty: IntegerProperty = SimpleIntegerProperty(7)
val periodProperty: ReadOnlyObjectProperty<Int> = SimpleObjectProperty<Int>()
.apply {
bind(objectBinding(fooProperty) {
fooProperty.get()
})
}
println("Result ${periodProperty.get()}")
}
}
What am I doing wrong? Any ideas/hints?jschneider
12/01/2018, 7:39 PMcarldea
12/01/2018, 11:09 PMcarldea
12/01/2018, 11:09 PMjkbbwr
12/02/2018, 6:06 AMcarlw
12/02/2018, 11:48 PM