cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to move from signal modeling to system modeling at the first JMP Aerospace Analytics webinar. Register. June 18, 1 p.m. US Eastern Time.

JMP Wish List

We want to hear your ideas for improving JMP. Share them here.
Choose Language Hide Translation Bar

Allow TableBox to have rows of variable heights

What inspired this wish list request? I use TableBox to simulate a ListBox but with formatting

 

 

What is the improvement you would like to see? I would like to see TableBox rows not all be forced to the exact same height

 

 

Why is this idea important? Consider a TableBox with only one attached child -- a ColBox with various elements.  The TableBox has only one column -- there is no reason to force all rows to have the same height

 

Consider the following JSL -- it would be nice if the first row could be sized to it's content, not to the content of the second row.

 

Names Default To Here( 1 );
New Window( "Mountains",
	tb = Table Box(
		Col Box( "Heights",
			Text Box( "Short Row" ),
			Spacer Box( Size( 100, 100 ), <<Background Color( "Blue" ) )
		)
	)
);