We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scroll the memory list when the current memory index is not visible
The text was updated successfully, but these errors were encountered:
This doesn't seem to be that easy, as JavaFX 8 doesn't seem to provide the methods one could expect for this.
Some code I have been trying, none of which prints anything at all.
for (javafx.scene.Node node : memoryList.lookupAll(".scroll-bar")) { if (node instanceof ScrollBar) { final ScrollBar bar = (ScrollBar) node; bar.valueProperty().addListener(new ChangeListener<Number>() { @Override public void changed(ObservableValue<? extends Number> value, Number oldValue, Number newValue) { System.out.println(bar.getOrientation() + " " + newValue); } }); } } this.memoryList.onScrollFinished = {ScrollEvent event -> def units = event.getTextDeltaYUnits() println "units $units y $event.y textDeltaY $event.textDeltaY sceneY $event.sceneY" } as javafx.event.EventHandler<ScrollEvent>
Sorry, something went wrong.
Add some testing code for #37
daf25d7
This might help with implementing this: https://github.com/TomasMikula/Flowless See also the Javadoc for Cell.updateItem
Cell.updateItem
No branches or pull requests
Scroll the memory list when the current memory index is not visible
The text was updated successfully, but these errors were encountered: