reveal

Docs: https://vlaaad.github.io/reveal/ Source: https://github.com/vlaaad/reveal
comptedeouf 2020-12-23T17:27:29.497Z

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)

vlaaad 2020-12-23T17:47:51.497100Z

Hmm, it's possible to implement, there is https://openjfx.io/javadoc/14/javafx.graphics/javafx/stage/Stage.html#toFront()

vlaaad 2020-12-23T17:49:17.497400Z

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

vlaaad 2020-12-23T17:50:24.497600Z

This is the next thing I'm planning to do, implement a way to interact with Reveal from outside Reveal.

vlaaad 2020-12-23T17:51:14.497800Z

It's currently in very early design phase, but I'll keep your use case in mind!

comptedeouf 2020-12-23T19:13:33.498Z

found a way

(javafx.application.Platform/runLater 
   (fn [] (-> (javafx.stage.Window/getWindows) first            .toFront)))

comptedeouf 2020-12-23T19:14:35.498200Z

that's if I have only one window but that works for me. Thanks for the awesome library.

vlaaad 2020-12-23T19:56:21.498400Z

Oh right, the window is globally accessible 😸

2020-12-23T23:02:18.499800Z

Hi, is there a way to search within a table view? (Text search key β€˜/β€˜ does not work there for me.)

2020-12-24T13:40:10.007300Z

Thanks @vlaaad; is that a javafx table (view) limitation?

vlaaad 2020-12-24T14:38:51.007500Z

yeah, it needs separate search implementation

πŸ‘ 1
wilkerlucio 2020-12-23T23:20:29Z

cmd/ctrl + f I think searches in general

wilkerlucio 2020-12-23T23:21:52.000900Z

just tried here, and you are right, it doesn't work in table view

2020-12-23T23:22:06.001500Z

Thanks @wilkerlucio. Unfortunately, that keybinding and the equivalent β€˜/β€˜ don’t work in table view for me.

2020-12-23T23:22:11.001900Z

Right :)

2020-12-23T23:26:48.004800Z

Thanks for taking the time to check it, @wilkerlucio!

πŸ‘ 1