Re: FxApplicationThread usage with

2019-04-16 Thread Kevin Rushforth
Para:* openjfx-dev@openjdk.java.net *Assunto:* FxApplicationThread usage with I have a table where column values are bound to row objects' properties like this column.setCellValueFactory(ex -> ex.getValue().getSomeProperty()); Should I always call... someProperty.

Re: FxApplicationThread usage with

2019-04-16 Thread Andrew Munn
ndrew Munn > *Enviado:* terça-feira, 16 de abril de 2019 00:03 > *Para:* openjfx-dev@openjdk.java.net > *Assunto:* FxApplicationThread usage with > > I have a table where column values are bound to row objects' properties > like this > >column.setCellValueFactory(ex ->

RE: FxApplicationThread usage with

2019-04-16 Thread Thiago Milczarek Sayao
tasks outside a Task<> or Service<> the UI will block (show a white screen or any non-desirable behaviour). De: openjfx-dev em nome de Andrew Munn Enviado: terça-feira, 16 de abril de 2019 00:03 Para: openjfx-dev@openjdk.java.net Assunto: FxAppli

FxApplicationThread usage with

2019-04-15 Thread Andrew Munn
I have a table where column values are bound to row objects' properties like this column.setCellValueFactory(ex -> ex.getValue().getSomeProperty()); Should I always call... someProperty.setValue(updatedValue); ...in the FxApplicationThread, or does binding it to the TableColumn take care