Re: [Pharo-users] Text Field With Entry Completion Via Tab

2015-10-07 Thread Peter Uhnák
On Thu, Oct 8, 2015 at 3:14 AM, Sean P. DeNigris wrote: > Nicolai Hess wrote > > you can select an entry with arrow up/down and the enter key should > accept > > the selected completion entry. > > Ah, yes I see that now. I wanted tab completion, but it's not worth the > effort. I did a spike and

Re: [Pharo-users] Text Field With Entry Completion Via Tab

2015-10-07 Thread Sean P. DeNigris
Nicolai Hess wrote > you can select an entry with arrow up/down and the enter key should accept > the selected completion entry. Ah, yes I see that now. I wanted tab completion, but it's not worth the effort. I did a spike and it required a handful of subclasses. Enter will do for now. - Ch

Re: [Pharo-users] Text Field With Entry Completion Via Tab

2015-10-06 Thread Nicolai Hess
2015-10-06 15:56 GMT+02:00 Sean P. DeNigris : > With all the new tools - Spec, Brick, Tx, etc - what is the easiest way to > do > this in Pharo 4.0? I don't have a preference for the tool as long is it > works in Morphic. > > My naive attempt failed: > > applicants := PaPerson list collect: #name.

[Pharo-users] Text Field With Entry Completion Via Tab

2015-10-06 Thread Sean P. DeNigris
With all the new tools - Spec, Brick, Tx, etc - what is the easiest way to do this in Pharo 4.0? I don't have a preference for the tool as long is it works in Morphic. My naive attempt failed: applicants := PaPerson list collect: #name. entryCompletion := EntryCompletion new