cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
New to using JMP? Hit the ground running with the Early User Edition of Discovery Summit. Register now, free of charge.
Register for our Discovery Summit 2024 conference, Oct. 21-24, where you’ll learn, connect, and be inspired.
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