Is there a way to bring the reveal ui window to the front from the repl ? (I use a vertical monitor so can't use the macos split screen)
Hmm, it's possible to implement, there is https://openjfx.io/javadoc/14/javafx.graphics/javafx/stage/Stage.html#toFront()
It's not possible to do today since there is no way to interact with Reveal window from the repl other than sending values to it and closing it
This is the next thing I'm planning to do, implement a way to interact with Reveal from outside Reveal.
It's currently in very early design phase, but I'll keep your use case in mind!
found a way
(javafx.application.Platform/runLater
(fn [] (-> (javafx.stage.Window/getWindows) first .toFront)))
that's if I have only one window but that works for me. Thanks for the awesome library.
Oh right, the window is globally accessible πΈ
Hi, is there a way to search within a table view? (Text search key β/β does not work there for me.)
Thanks @vlaaad; is that a javafx table (view) limitation?
yeah, it needs separate search implementation
cmd/ctrl + f I think searches in general
just tried here, and you are right, it doesn't work in table view
Thanks @wilkerlucio. Unfortunately, that keybinding and the equivalent β/β donβt work in table view for me.
Right :)
Thanks for taking the time to check it, @wilkerlucio!