cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
Choose Language Hide Translation Bar
Rajat
Level IV

Dynamic Dialog box for selecting different observations

I have the following data. I want to create a dialog box which will show different type of games available in game column and it will give option to user to select the tyoe of each game. Once user has selected type for each game and click ok then it should update the orignal table with new column added having game type for each game. Also, if possible game that user has selected for a particular game type, that game should hide from the list of games in the dialog box, to avoid duplication.

 

Below is my orginal and final table. Interactive dialog box should look like as in attached image where user can drag and drop the game choices available to the respective game type. Ok button should only activate once all the games are selected.

 

Please help me create .jsl script for the same.

 

orignal Table:

NameGame
A

Football

Achess
ABadminton
BFootball
CChess
BTable Tennis
DNothing

 

Final Table:

NameGameGame Type
AFootballoutdoor
AChessindoor
ABadmintonindoor
BFootballoutdoor
CChessindoor
BTable Tennisindoor
DnothingNot Applicable

 

Thanks :) :)

2 ACCEPTED SOLUTIONS

Accepted Solutions
gzmorgan0
Super User (Alumni)

Re: Dynamic Dialog box for selecting different observations

@Rajat,

Most of the JMP Scripting Language, JSL, objects and functions for building custom dialogs target table columns. Consider the JMP built-in dialog windows are requesting columns. There are objects that can be used for custom selection, but these "values" objects typically require more programming.  For example, a ColListBox object has a builtin drag and drop interface: a column name can be dragged to another ColListBox, and the column names will be unique.

 

JSL does provide ListBox() objects, however, it is now the scripters job to ensure uniqueness. For example, depending upon how you code the task, you have to manage that Football has just one classification and that te name is used once.  

 

One method is to not use a dialog, but create a table summary of unique games and the Game Type, have the user update this shortened table then update the source table. This method is similar to older database update interfaces.

 

I have attached a very simple and not so elegant (repeated, brute force code) script to complete the described task.  I kept it simple since you have not read the book.  The script interface includes a remove button, in case a game was accidentally selected for an incorrect type.  Instead of creating a union function, so the list of games have no duplicates, and functions to ensure a game is not classified as both indoor and outdoor, I built the code to remove the game from the source  list once a category has been selected.

 

You should read about the Associative Array, a keyed list, ListBox, ButtonBox and Set Function(). 

 

Below is a screen shot of the dialog and the dialog portion of the script. The full script is attached.  Note this could be done with a DataFilterBox, but the ListBox() is easier to use. BTW this was tested on JMP13 and 14.

image.png

    

//--Dialog
usr = New Window("Using List Boxes", <<Modal,
	HListBox(
		PanelBox("Source Values",
		 slb = ListBox(wkList)
		),
		PanelBox("Cast Type",
			lineupBox(ncol(2),
				bb1 = ButtonBox("Indoor", <<setFunction(gSelect) ),
				lb1 = ListBox(idList),
				bb2 = ButtonBox("Outdoor", <<setFunction(gSelect) ),
				lb2 = ListBox(odList),
				bb3 = ButtonBox("Nothing", <<setFunction(gSelect) ),
				lb3 = ListBox(noList)
			)
		),
		PanelBox("Action",
		   LineupBox(ncol(1),
		   bbok = ButtonBox("OK", onOK),
		   bbup = ButtonBox("Remove", onRmv) 
		))
	)
);

View solution in original post

gzmorgan0
Super User (Alumni)

Re: Dynamic Dialog box for selecting different observations

@Rajat,

 

Attached is a modified script. Items to note:

  • Uses a ComboBox for the list of Category options, set by a list internal to the script.
  • Assigments are made by selections from the source list, the current category in the ComboBox and pressing the Assign button
  • The assignment is listed as Game name > Category
  • An Update button was added so that the table can be updated incrementally
  • The source list is created only for Games that have not been assigned a Game Type
  • The actions for remove and writing to the table had to be changed. Now the items in lb1, the assigment ListBox, have 2 pieces of information in a singe string. The Word(n,string,delimiter) function is used to exatract the pertinent information. 

The screenshot displays that one assignment has been made. For this view, if the user presses assign, Badminton and Football will be assigned as Outdoor.  

 

This interface reduces the number of variables for display boxes.  Creating a useful interface requires understanding the application, needs and usage, knowing some basics or finding example code that is close to what you want and understanding that. Note that there are many alternatives to this script.  Good luck!  

image.png

 

JSL for the dialog layout. Full script is attached.

//--Dialog
usr = New Window("Using List Boxes", <<Modal,
	HListBox(
		PanelBox("Source Values",
		 slb = ListBox(wkList)
		),
		PanelBox("Cast Type",
		 LineUpBox(ncol(1),
		    cb = ComboBox(catOpt, <<set width(300), _currCat = cb << GetSelected() ),
			lineupBox(ncol(2),
				bb1 = ButtonBox("Assign", <<setFunction(gSelect) ),
				lb1 = ListBox(catList, nlines(nl) )
			)
		 )
		),
		PanelBox("Action",
		   LineupBox(ncol(1),
		   bbok  = ButtonBox("OK", onOK),
		   bbupd = ButtonBox("Update", onUpd),
		   bbrmv = ButtonBox("Remove", onRmv) 
		))
	)
);

View solution in original post

7 REPLIES 7
pmroz
Super User

Re: Dynamic Dialog box for selecting different observations

Here's a solution that uses a table box with a col box.  Adjust for your game types.

dt = New Table( "Games", Add Rows( 7 ),
	New Column( "Name", Character, "Nominal",
		Set Values( {"A", "A", "A", "B", "C", "B", "D"} ) ),
	New Column( "Game", Character( 16 ), "Nominal", Set Values(
		{"Football", "chess", "Badminton", "Football", "Chess", "Table Tennis", "Nothing"} ) ),
	new column("Game Type", Character, "Nominal")
);

game_list = dt:game << get values;
ngames    = nitems(game_list);

selected_type = {};


type_list = {"No choice made", "Outdoor", "Indoor", "Nothing"};
game_type_cb = {};
game_type_colb = col box("Game Type");

for (i = 1, i <= ngames, i++,
	selected_type[i] = "No choice made";
	game_type_cb[i] = combo box(type_list);
	game_type_colb << append(game_type_cb[i]);
);

nw = new window("Game Type Setting",
	panel box("Select game type for each game",
		tb = table box(
			string col box("Game", game_list),
			game_type_colb
		),
	),
	panel box("Actions",
		hlistbox(
			okb = button box("OK",
				for (i = 1, i <= ngames, i++,
					selected_type[i] = game_type_cb[i] << get selected();
					dt:game type[i] = selected_type[i];
				);
				show(selected_type);
				nw << close window;
			),
			canb = button box("Cancel", 
				nw << close window;
			),
		)
	)
);
Rajat
Level IV

Re: Dynamic Dialog box for selecting different observations

Hi @pmroz
Thanks for replying.
In my actual dataset I have 1000 games with 25 unique games and also I have only three categories 1.Indoor 2.Outdoor 3.Not Applicable. With this approach I have to select game type for each 1000 games. I tried with unique game also but it didn't work.
Can we have a window which only shows unique values of games? Also, it should allow multiple selection of game and then select game type for all multiple selection of games because selection of game type for each unique value of game is tedious if count of unique game increases.
gzmorgan0
Super User (Alumni)

Re: Dynamic Dialog box for selecting different observations

@Rajat,

Most of the JMP Scripting Language, JSL, objects and functions for building custom dialogs target table columns. Consider the JMP built-in dialog windows are requesting columns. There are objects that can be used for custom selection, but these "values" objects typically require more programming.  For example, a ColListBox object has a builtin drag and drop interface: a column name can be dragged to another ColListBox, and the column names will be unique.

 

JSL does provide ListBox() objects, however, it is now the scripters job to ensure uniqueness. For example, depending upon how you code the task, you have to manage that Football has just one classification and that te name is used once.  

 

One method is to not use a dialog, but create a table summary of unique games and the Game Type, have the user update this shortened table then update the source table. This method is similar to older database update interfaces.

 

I have attached a very simple and not so elegant (repeated, brute force code) script to complete the described task.  I kept it simple since you have not read the book.  The script interface includes a remove button, in case a game was accidentally selected for an incorrect type.  Instead of creating a union function, so the list of games have no duplicates, and functions to ensure a game is not classified as both indoor and outdoor, I built the code to remove the game from the source  list once a category has been selected.

 

You should read about the Associative Array, a keyed list, ListBox, ButtonBox and Set Function(). 

 

Below is a screen shot of the dialog and the dialog portion of the script. The full script is attached.  Note this could be done with a DataFilterBox, but the ListBox() is easier to use. BTW this was tested on JMP13 and 14.

image.png

    

//--Dialog
usr = New Window("Using List Boxes", <<Modal,
	HListBox(
		PanelBox("Source Values",
		 slb = ListBox(wkList)
		),
		PanelBox("Cast Type",
			lineupBox(ncol(2),
				bb1 = ButtonBox("Indoor", <<setFunction(gSelect) ),
				lb1 = ListBox(idList),
				bb2 = ButtonBox("Outdoor", <<setFunction(gSelect) ),
				lb2 = ListBox(odList),
				bb3 = ButtonBox("Nothing", <<setFunction(gSelect) ),
				lb3 = ListBox(noList)
			)
		),
		PanelBox("Action",
		   LineupBox(ncol(1),
		   bbok = ButtonBox("OK", onOK),
		   bbup = ButtonBox("Remove", onRmv) 
		))
	)
);

Rajat
Level IV

Re: Dynamic Dialog box for selecting different observations

Thanks @gzmorgan0
I am looking for this solution only.

I am trying to understand the code. Looks like we have to create so many variables. Can you please suggest me any good video tutorial series (preferably) or any book which I can refer to learn creating interactive dialog boxes using jsl. I am at very beginning of creating these dialog boxes.

Thanks :) :)
gzmorgan0
Super User (Alumni)

Re: Dynamic Dialog box for selecting different observations

@Rajat,

You did not mention which JMP version you are using.  If JMP 14, from the JMP main menu, select Help > Books > JMP Scripting Guide. This is the PDF version of a hard bound book. Chapter 11, starting ner page 517, the section "Construct Custom Windows" begins.  This is a very good source for learning.

 

Also Help > Scripting Index > At the top gray button, press and select Display Boxes.  From the left hand side, select a disply box constructor and on the right see the syntax then there are 1 or more simple example scripts that you can run, or copy and paste and make your own script, to learn how each constructor works.  I suggest you lookup: ButtonBox, ListBoxBox which are constructors. PanelBox, LineUpBoxListBox (HListBox, VListBox) are containers used for arranging the layout of the dialog.

 

To really learn how to compose scripts, you really need to know the tools and this learning journey can take time.  However, many scripters learn by taking existing scripts, reading, running, modifying to meet their needs,

 

Since you said this would take many variables, I am assuming that you need more than 3 categories (Indoor, Outdoor, Nothing). As I stated in my last post there are many ways to this and I used copy paste code.  If you have many categories, I would modify my script with the exampe provided by @pmroz. I would have use a ComboBox  to select from a list of categories, and just one button box (Assign) and just one assignment box.  If I have time, I will modify my script and attach it.

 

JMP into JMP Scripting, 2 and  JSL Companion, Applications of the JMP Scripting Language, 2nd Edition are two other books you might find useful to learn JSL.

gzmorgan0
Super User (Alumni)

Re: Dynamic Dialog box for selecting different observations

@Rajat,

 

Attached is a modified script. Items to note:

  • Uses a ComboBox for the list of Category options, set by a list internal to the script.
  • Assigments are made by selections from the source list, the current category in the ComboBox and pressing the Assign button
  • The assignment is listed as Game name > Category
  • An Update button was added so that the table can be updated incrementally
  • The source list is created only for Games that have not been assigned a Game Type
  • The actions for remove and writing to the table had to be changed. Now the items in lb1, the assigment ListBox, have 2 pieces of information in a singe string. The Word(n,string,delimiter) function is used to exatract the pertinent information. 

The screenshot displays that one assignment has been made. For this view, if the user presses assign, Badminton and Football will be assigned as Outdoor.  

 

This interface reduces the number of variables for display boxes.  Creating a useful interface requires understanding the application, needs and usage, knowing some basics or finding example code that is close to what you want and understanding that. Note that there are many alternatives to this script.  Good luck!  

image.png

 

JSL for the dialog layout. Full script is attached.

//--Dialog
usr = New Window("Using List Boxes", <<Modal,
	HListBox(
		PanelBox("Source Values",
		 slb = ListBox(wkList)
		),
		PanelBox("Cast Type",
		 LineUpBox(ncol(1),
		    cb = ComboBox(catOpt, <<set width(300), _currCat = cb << GetSelected() ),
			lineupBox(ncol(2),
				bb1 = ButtonBox("Assign", <<setFunction(gSelect) ),
				lb1 = ListBox(catList, nlines(nl) )
			)
		 )
		),
		PanelBox("Action",
		   LineupBox(ncol(1),
		   bbok  = ButtonBox("OK", onOK),
		   bbupd = ButtonBox("Update", onUpd),
		   bbrmv = ButtonBox("Remove", onRmv) 
		))
	)
);

Rajat
Level IV

Re: Dynamic Dialog box for selecting different observations

Thnaks @gzmorgan0
Appreciate your help.
I am using JMP 14.