cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

Community Discussions

Got a question about using the JMP User Community? A complaint or a compliment? Post it here.
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