cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP Wish List

We want to hear your ideas for improving JMP software.

  1. Search: Please search for an existing idea first before submitting a new idea.
  2. Submit: Post your new idea using the Suggest an Idea button. Please submit one actionable idea per post rather than a single post with multiple ideas.
  3. Kudo & Comment Kudo ideas you like, and comment to add to an idea.
  4. Subscribe: Follow the status of ideas you like. Refer to status definitions to understand where an idea is in its lifecycle. (You are automatically subscribed to ideas you've submitted or commented on.)

We consider several factors when looking for what ideas to add to JMP. This includes what will have the greatest benefit to our customers based on scope, needs and current resources. Product ideas help us decide what features to work on next. Additionally, we often look to ideas for inspiration on how to add value to developments already in our pipeline or enhancements to new or existing features.

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!