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.
  • See how to design an experiment, explore factor-response relationships, assess tradeoffs, and ID best settings. Register for Sep. 11 Mastering JMP.

Discussions

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

How to set a Column list box to required.

My application should allow the users to select the required columns to proceed with further evaluation of the data. And I want to set the column list box status to required. But it is still displaying optional in the modal. How to set them to required.

 

Button box("X Column", colListX<<Append(colListData<<GetSelected)),
colListX = ColListBox(<<set required(1),nLines(1)),
Button box("Y Column", colListY<<Append(colListData<<GetSelected) ),
colListY = Col List Box(<<set required(1),nLines(1)),
Button box("BY Column", colListBy<<Append(colListData<<GetSelected)),
colListBy = Col List Box(nLines(1))

And I even wanted to display an error msg when the required fields are not selected. Can "Isempty" function used to check whether column list box is empty or not.

Error = expr(New Window("JMP ALERT" , <<Modal, Textbox("Please select the required fields."),ButtonBox("OK")));
If(Isempty(colListX) == 1,
Error
);
1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: How to set a Column list box to required.

I typically check to see how many items are found after using the messsage

     << Get Items()

Here is an example from the Scripting Index that I did a slight modification to, to find the number of items returned from the Get Items message

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window( "Col List Box Example",
	Col List Box( all, width( 250 ), maxSelected( 1 ) ),
	fontobj = lb = Col List Box()
);
lb << Append( "height" );
nitems(lb << Get Items());
Jim

View solution in original post

4 REPLIES 4
txnelson
Super User

Re: How to set a Column list box to required.

You need to use

    << set Min Items()

to set how many items are required for a given list

txnelson_0-1694640543405.pngtxnelson_0-1694640543405.png

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window( "Col List Box Example",
	Col List Box( all, width( 250 ), maxSelected( 1 ) ),
	fontobj = lb = Col List Box()
);
lb << set Min Items(1);

Use the Scripting Index to find what messages can be passed to the Platforms, along with examples 

 

Jim
Vinusha
Level II

Re: How to set a Column list box to required.

Yeah, that worked. Thank you so much.

 

I have another doubt, how can we check whether ColListBox is empty? Can we use "IsEmpty" ? Could you help me with this.

Error = expr(New Window("JMP ALERT" , <<Modal, Textbox("Please select the required fields."),ButtonBox("OK")));
If(Isempty(colListX) == 1,
Error
);
txnelson
Super User

Re: How to set a Column list box to required.

I typically check to see how many items are found after using the messsage

     << Get Items()

Here is an example from the Scripting Index that I did a slight modification to, to find the number of items returned from the Get Items message

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window( "Col List Box Example",
	Col List Box( all, width( 250 ), maxSelected( 1 ) ),
	fontobj = lb = Col List Box()
);
lb << Append( "height" );
nitems(lb << Get Items());
Jim
Vinusha
Level II

Re: How to set a Column list box to required.

Yeah, that worked. Thank you so much.

Recommended Articles