cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

Discussions

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

Colsitbox question

Is there a way to have a collistbox show column groupings?  they show up when you use a column dialog but just a list of columns with no grouping shows up when I use a collistbox.  Ideally I'd like to be able to stick with the collistbox if possible.

 

What I'd like to see:

shampton82_0-1612754230858.png

 

what I'm getting:

shampton82_1-1612754256155.png

 

Thanks for any ideas.

 

Steve

 

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: Colsitbox question

You can use the "Grouped" option on the Col List Box.

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DAA/semiconductor capability.jmp" );
New Window( "Col List Box Example",
	Col List Box( all, width( 250 ), maxSelected( 1 ), grouped ),
	fontobj = lb = Col List Box()
);

grp1.PNG

It is documented in the Scripting Index

grp2.PNG

Jim

View solution in original post

1 REPLY 1
txnelson
Super User

Re: Colsitbox question

You can use the "Grouped" option on the Col List Box.

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DAA/semiconductor capability.jmp" );
New Window( "Col List Box Example",
	Col List Box( all, width( 250 ), maxSelected( 1 ), grouped ),
	fontobj = lb = Col List Box()
);

grp1.PNG

It is documented in the Scripting Index

grp2.PNG

Jim

Recommended Articles