Questions tagged [scalafxml]

ScalaFXML is a library that bridges JavaFX's FXML file format with the ScalaFX library. It achieves this by automatically building proxy classes, enabling a more clear controller syntax.

ScalaFXML is a library that bridges JavaFX's FXML file format with the ScalaFX library. It achieves this by automatically building proxy classes, enabling a more clear controller syntax.

2 questions
0
votes
1 answer

I am very close to finish my to do list application but there is a slight error

This is a to-do list application that i made as a beginner. However, there is an error that says missing parameter type in this line of code: todoTable.selectionModel().selectedItem.onChange( (_, newValue) => showTodoDetails(Some(newValue)) ) I…
0
votes
1 answer

Unable to access ScalaFXML controller class members in another class

I have following code @sfxml class Charts(private val predicate_chart:ComboBox[String], private val measure_chart : ComboBox[String], private val chart_chart : ComboBox[String], private val chart_graph :…