cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • 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 Wish List

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

Add scriptable control for code folding markers to enable contraction and expansion

I would like to propose the ability to have scriptable control for code folding markers. This in my opinion would enable easier management of code. For e.g. 

SelectableMatrix = 
Expr(
		ResMat = {}; 
		// loop through each row
		For( i = 1, i <= nR, i++, 
				ResMat[i] = {};
				// loop through each column getting values
				For( r = 1, r <= nC, r++,
						ResMat[i][r] = TB1[CheckBoxBox( r )] << get( i )
				   );	
		   );	
		ResMat = Matrix( ResMat );
	);

The ability to then use actions like the following to contract and expand the code will make it easier to manage the code. 

 

SelectableMatrix << expand; 
SelectableMatrix << contract; 
1 Comment
Ryan_Gilmore
Community Manager
Status changed to: Archived
We are archiving this request. If this is still important please comment with additional details and we will reopen. Thank you!