cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
EstelleS
Level III

How to retrieve user-input values from a model dialog Application module window?

Hi All,

 

I am developing a JMP Application that includes multiple module windows and extensive scripting with Python integration.

 

One of my modules has selections for different task options A, B, C, etc... Based on this selection, I have created additional module windows to pop up and ask the user to input some parameters required for completing each task (these inputs are Number Edit Boxes in the Application modules). In the property panel of the Application Builder, these popup parameter module windows are set as "Modal Dialogue".

 

When the user clicks the "OK" button, I want the modal window to dismiss and for the user inputs to be stored into variables so the application code can then do whatever work is required based on the selections. I have tried several different scripting options (such as "<< Get") but they have not been working.

 

Any advice is greatly appreciated.

 

Thank you!

- Estelle

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: How to retrieve user-input values from a model dialog Application module window?

I haven't used Application builder myself, but based on Sample application "Data Table Application", << get should work just fine.

Changed Launcher to modal:

jthi_0-1648233560408.pngjthi_0-1648233560408.png

Ok button executes OkButtonPress

jthi_1-1648233586475.pngjthi_1-1648233586475.png

and OkButtonPress calls doFun function

jthi_2-1648233605947.pngjthi_2-1648233605947.png

which has

rate = SampleRateInput << Get;

 

 

-Jarmo

View solution in original post

1 REPLY 1
jthi
Super User

Re: How to retrieve user-input values from a model dialog Application module window?

I haven't used Application builder myself, but based on Sample application "Data Table Application", << get should work just fine.

Changed Launcher to modal:

jthi_0-1648233560408.pngjthi_0-1648233560408.png

Ok button executes OkButtonPress

jthi_1-1648233586475.pngjthi_1-1648233586475.png

and OkButtonPress calls doFun function

jthi_2-1648233605947.pngjthi_2-1648233605947.png

which has

rate = SampleRateInput << Get;

 

 

-Jarmo

Recommended Articles