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

Text Edit Box() <<Set AutoCompleter List()

I think it would be awesome if texteditbox() had the ability to have a list of values that it would search from and give a listbox (without messing up layouts) below where you could select possible options. I'm thinking like google or whatever. 

 

something like this

Names default to here(1);
new window("Test", 
	teb = texteditbox("")
);
teb << Set AutoCompleter List({"face", "John", "Denver", "head", "heat"});
// I imagine it would have other flags like
teb << Set AutoCompleter Match("All"|"Start");

Where if the match were all it would look like

autocompleter all.png

And if it were start it would look like

autocompleter start.png

 

 

3 Comments

@vince_faller, There is an "editable" option for Combo Box that gets you a different kind of auto complete.

New Window( "Example",
	cb = Combo Box(
		{"face", "John", "Denver", "head", "heat"},
		editable,
		Show( cb << Get() )
	)
);

Here's a gif of how it works:

2019-03-22_13-20-43.gif

I will also pass your suggestion for an auto complete list to development.

vince_faller
Super User (Alumni)

@Justin_Chilton , you are tricky.  I like this but yeah. I think I still would like it to create a filtered list on typing that doesn't mess with layout. Also, if there was an option to not allow typing that wasn't part of the list.  For instance it wouldn't allow me to type a z in your example.  

Status changed to: Acknowledged

Hi @vince_faller, thank you for your suggestion! We have captured your request and will take it under consideration.