- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Tiny JSL Challenge: Escape from Modal OnClose(0)
in Display number of selected rows in the new window I gave a solution that uses the <<OnClose(...) function and noted that the script ends with ;1 so the window can actually close. If it ends with ;0 the window will not close, and because it is a modal window, you are
- stuck
- caught between a rock and a hard place
- painted into a corner
Because this example uses Graph Builder and a Data Table, there is a way out (without using Task Manager to kill JMP.)
Can you find it? Save your work before starting!
Replies here are OK, maybe there is more than one way...spoiler/solution follows.
- Chapters
- descriptions off, selected
- captions settings, opens captions settings dialog
- captions off, selected
- default, selected
This is a modal window.
Beginning of dialog window. Escape will cancel and close the window.
End of dialog window.
This is a modal window. This modal can be closed by pressing the Escape key or activating the close button.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Tiny JSL Challenge: Escape from Modal OnClose(0)
My solution (different from @Craige_Hales solution):
Set Function(Function({this},
((this << top parent) << On Close(1)
)))
You cannot simply set this by right clicking, but you can right click around and find one Show Properties -> Find the correct button box from the list and then set some simple action to Pressafter setting something to the press you can right click on the button and modify script it runs
Then Set Script which will modify the modal windows on close to return always 1, press OK and modal will close
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Tiny JSL Challenge: Escape from Modal OnClose(0)
My solution (different from @Craige_Hales solution):
Set Function(Function({this},
((this << top parent) << On Close(1)
)))
You cannot simply set this by right clicking, but you can right click around and find one Show Properties -> Find the correct button box from the list and then set some simple action to Pressafter setting something to the press you can right click on the button and modify script it runs
Then Set Script which will modify the modal windows on close to return always 1, press OK and modal will close
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Tiny JSL Challenge: Escape from Modal OnClose(0)
@jthi solution is better; it only needs the OK button. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Tiny JSL Challenge: Escape from Modal OnClose(0)
Out of curiosity: why does OnClose even set this flag, isn't that the purpose of OnValidate?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Tiny JSL Challenge: Escape from Modal OnClose(0)
On Validate is tied to the OK button; you can cancel without validating.
On Close is tied to the window preparing to close, for any reason.
You can probably use both, but I'd be hard pressed to come up with a good reason.
At the OS level, https://docs.microsoft.com/en-us/windows/win32/learnwin32/closing-the-window shows there is another interesting hook when the window has disappeared off the display and is about to be destroyed (WM_DESTROY). JMP does not expose this event.