cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar
txnelson
Super User

The size of the indentions in the JSL entries for the Discussion Replies are too large

The number of columns for the indentation tabs in the JSL entries is much larger than they need to be.  They can be easily cut down to about 1 third of the size they are

Eval(
	Substitute(
			Expr(
				// Make a list of the data tables this execution of the code
				// will make, so they can be closed when the output window is
				// closed
				__DataTableList__ = {};
				// Create the initial window
				__nw__ = New Window( "Product Sample", TheVLB = V List Box() );
				// This is the code that will be run when the above window is closed
				__nw__ << on close(
					For( i = 1, i <= N Items( __DataTableList__ ), i++,
						Try( Close( Data Table( __DataTableList__[i]), nosave ) )
					)
Jim
1 REPLY 1
Jeff_Perkinson
Community Manager Community Manager

Re: The size of the indentions in the JSL entries for the Discussion Replies are too large

Duly noted. We'll work on this and see if we can make it better.
-Jeff