Gabriel Sanmartin
05/01/2020, 8:22 AMPedro González
05/01/2020, 1:45 PMDominaezzz
05/01/2020, 5:51 PMaltavir
05/03/2020, 8:31 AMSlackbot
05/03/2020, 2:36 PMAhmed Mourad
05/18/2020, 3:14 AMjavafx.beans.binding.ObjectExpression
part of JavaFx, which is bundled with Jdk 8?
The IDE is fine with resolving my call to ObjectExpression#isEqualTo
and can take me to the source, however, the compiler doesn't seem to recognize any of the methods of that class.Nikky
05/18/2020, 5:04 PMyk_nb
05/20/2020, 11:38 AMAhmed Mourad
05/23/2020, 4:39 PMGaston R W
05/26/2020, 4:41 PMsbyrne
06/04/2020, 3:27 PMObservableList
used by a tableview from another thread?Jakob K
06/08/2020, 2:27 PMiari
06/11/2020, 10:31 AMListCellFragment
depending on the orientation of the hosting ListView
?Olav Hermansen
06/13/2020, 6:35 PMclass TestApp : App(MyView::class)
fun main(args: Array<String>) {
Application.launch(TestApp::class.java, *args)
}
pom.xml
<app.mainClass>package.TestAppKt</app.mainClass>
This should work?Olav Hermansen
06/16/2020, 8:05 AMOlav Hermansen
06/17/2020, 7:58 AMinit {
if(isConfigured) {
MainApplicationView().openWindow()
close()
}
}
Edit: runLater on close did the trick, but gives the effect of window glitch. Could be I should check the config before any view is initiated.Ahmed Mourad
06/24/2020, 10:02 PMandylamax
06/28/2020, 11:23 AMjavafx.event.EventTarget
appears to be missing. Help please . . .Douglas Arantes
06/30/2020, 7:27 PMMariusz
07/07/2020, 7:15 PMandylamax
07/07/2020, 11:56 PMMarshall
07/09/2020, 9:13 PM.tabstack {
-fx-tab-max-height: 0 ;
}
.tabstack .tab-header-area {
visibility: hidden ;
}
Luukas
07/09/2020, 10:31 PMKarlo Lozovina
07/10/2020, 7:43 PMLuukas
07/12/2020, 6:57 AMAhmed Mourad
07/12/2020, 10:38 AMHullaballoonatic
07/16/2020, 9:47 PMAhmed Mourad
07/19/2020, 5:39 PMStringProperty
and I want to use it for a DatePicker
which required an ObjectProperty<LocalDate>
Is there a way to pass a converter or something to do the mapping between the properties? What's the best practice for this?
I can't change the type of the StringProperty
variable, it's a bit of a special case.ushort
07/23/2020, 3:45 AMAhmed Mourad
07/26/2020, 8:36 PM