- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
JSL: Update Locked Number Box Value From User Input
Hello, I am looking for a way to display an updated value (date) on JMP application. I feel like there should be a simple solution here but am struggling to find it.
In the Image below, I have set up a time filter for data table when you press the "Custom" button. After the Data range is entered by user, I want the locked Number Boxes to display the Start and End date values which were selected.
m_TimeCustomPress=Function({this},
// This function is called when the button is pressed
name = this << Get Button Name;
dt RAW_ALL = Open (//file location);
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: JSL: Update Locked Number Box Value From User Input
If I'm understanding correctly and StartTimeDisplay is what you're calling the locked number box, you'd want to modify the lines to:
StartTimeDisplay << set (StartTime);
EndTimeDisplay << set (EndTime);
as per the syntax in the Scripting Index.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: JSL: Update Locked Number Box Value From User Input
If I'm understanding correctly and StartTimeDisplay is what you're calling the locked number box, you'd want to modify the lines to:
StartTimeDisplay << set (StartTime);
EndTimeDisplay << set (EndTime);
as per the syntax in the Scripting Index.