- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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:
what I'm getting:
Thanks for any ideas.
Steve
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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()
);
It is documented in the Scripting Index
Jim
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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()
);
It is documented in the Scripting Index
Jim