cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar
AT
AT
Level V

User Interface

Hi,

I have made a UI and like to make some changes to it. This is shown below:

I like to move "OK" and "Cancel" to bottom of the window and in "Select Product Name" only choose on product (combine the right and left). Also like to know how to choose these options and put them in a varaible to be used for further scripting.

 I have attached the actual script.

Thanks so much for your help.  

 

Screen Shot 2018-01-12 at 10.16.34 AM.png

11 REPLIES 11
pmroz
Super User

Re: User Interface

You can capture the selected product in the code for the OK button.

			okb = button box("OK",
				one_product = rb1 << get selected;
			),
AT
AT
Level V

Re: User Interface

Thank you very much.