cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
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" ) )
		)
	)
);