- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
range slider box
How can I add a range slider box to my application in Application Builder.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: range slider box
I am not a JMP Application expert, however, in looking into it, I attempted to add in a Range Slider Box into the Application JSL. While I was successful in adding the object into the Application, it was not recognized as a recognized object.
The Range Slider Box() does not seem to be coming to JMP Applications in the near term.
I suggest you add it to the JMP Wish List
And, as I said above, I am not an expert with this, so with luck, another Community Member will have a solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: range slider box
Ah, one can add a dummy object via the GUI, then save the script to the script window, exchange the dummy object with the Range Slider, run the script and then continue editing the Dashboard via the GUI *)
*) unfortunately, the properties of the range slider box are not accessible via the GUI
I took the Display Boxes from the online help:
https://www.jmp.com/support/help/en/17.2/#page/jmp/display-functions.shtml
and marked the items that I found in the Application Builder template menu - or ones which are generated via Graph Platforms.
-> There are some other items that are difficult to add through the GUI , like Scene Display List (3D visualization) and Web Browser Box ...
Display Box | Listed in Application builder |
Border Box | x |
Busy Light | |
Button Box | x |
Calendar Box | |
Cell Plot | = Graph/ Cell Plot |
H/V Center Box | x |
Check Box | x |
Col List Box | x |
Combo Box | x |
Context Box | |
Data Filter Context Box | x |
Data Filter Source Box | x |
Data Table Box | |
Excerpt Box | |
Filter Col Selector | |
Global Box | |
Graph 3D Box | = Scaptterplot 3D |
Graph Box | x |
Hier Box | |
Icon Box | x |
If Box | x |
Journal Box | |
Lineup Box | x |
(H/V) List Box | x |
Matrix Box | x |
Mouse Box | x |
Number Col Box | x |
Number Col Edit Box | x |
Number Edit Box | x |
Outline Box | x |
Page Break Box | |
Panel Box | x |
Picture Box | x |
Popup Box | |
Radio Box | x |
Range Slider Box | |
Scene Box | x |
Scene Display List | |
Script Box | |
(H/V) Scroll Box | x |
(H/V) Sheet Box | |
Sheet Panel Box | x |
Slider Box | x |
Spacer Box | x |
Spin Box | x |
(H/V) Splitter Box | x |
String Col Box | x |
String Col Edit Box | x |
Tab Box | x |
Tab List Box | x |
Tab Page Box | x |
Table Box Plot Col Box Col Box Col Span Box Data Table Col Box | x |
Text Box | x |
Text Edit Box | x |
Web Browser Box |
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: range slider box
According to Jmp support (TS-00074741), there were already requests to add support for missing objects, like Range Slider Box.
For the remaining topics, I just created an entry in the wishlist:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: range slider box
Besides adding the range slider manually to the source script of the application, another workaround is to use Application Builder and add the range slider via << append after the application is generated. Please find attached an example code which I just received from Jmp Support - thanks @Arn_Cota
Top Outline << Append(
slider = Range Slider Box( 0, 100, low, high, rangeUpdate() )
);
This workaround makes it easier to edit the code (directly in the Application Builder).
The disadvantage:
As the range slider is added afterwards, the GUI editor doesn't know the range slider and won't show it: