| View previous topic :: View next topic |
| Which is best? |
| Call them both Combo/ComboBox but default it to the no-edit style. |
|
16% |
[ 1 ] |
| Separate them: DropList is a fixed list choices and Combo is a combination of DropList and Edit. |
|
83% |
[ 5 ] |
| Other |
|
0% |
[ 0 ] |
|
| Total Votes : 6 |
|
| Author |
Message |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10467
|
Posted: Mon Sep 06, 2004 7:36 pm Post subject: GUI Naming Poll: DropList separate from Combo? |
|
|
Deguix mentioned "DropList" as a possible name for the type of combobox that does not allow the user to type free-form text (i.e. a selection must be made from the dropdown menu). If you have an interest, please help us make the feature more user friendly by casting your vote and/or sharing your comments.
My suspicion is that true ComboBoxes are quite rarely used because normally (due to validation of input) the form designer will require you to select from a list of hard-coded choices rather than have the option of typing in some free-form text. |
|
| Back to top |
|
 |
BoBo Guest
|
Posted: Mon Sep 06, 2004 8:09 pm Post subject: |
|
|
| Quote: | | (due to validation of input) |
Yes, the best kinda combo I know provides incremental input functionality - means always shows the next matching term from a list of fixed choices. Could be a tough task
Yep, DropList =~ DropDownList. Approved
Yep, Combo = combination of DropDownList and Edit field that makes sense. Approved.  |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10467
|
Posted: Mon Sep 06, 2004 11:13 pm Post subject: |
|
|
| Quote: | | provides incremental input functionality - means always shows the next matching term | I've heard this called "progressive typing". It seems that the Explorer in Windows XP (and perhaps other OSes) has this feature. Perhaps some other standard Windows controls have it too?
And you're right about DropDownList: Google says its a much more popular search word than DropList. But since it's kinda long, I now lean more toward the simple "use combo for both" option. But at the moment, having a separate DropList control is more popular in votes. |
|
| Back to top |
|
 |
BoBo Guest
|
Posted: Tue Sep 07, 2004 7:10 am Post subject: |
|
|
| Drop or DropDown or DropDownList - I think all of them are fine as they are intuitive and would seperate it from combo - to prevent confusion. |
|
| Back to top |
|
 |
Nemroth Guest
|
Posted: Tue Sep 07, 2004 5:41 pm Post subject: |
|
|
I think it make sense to have a drop down list with the possibility to have an edit field in it or not, using an optional parameter
for instance :
| Code: | | gui, add, combo, yes, vMyCombo gMyCombo, CItem1|CItem2||CItem3|CItem4 |
where "yes" is for editable and "no" would be for not editable...
And we can think about the possibility (or not) to be able to change words in the list and about the possibility to append items to the list, or both
Perhaps the idea of recall last typed corresponding words, witch is in the wish list forum, is more easy to achieve and more usefull than the incremental input or auto complete possiblities, witch are similar.
I'm OK to vote, but I don't know how to do that !!! |
|
| Back to top |
|
 |
BoBo Guest
|
Posted: Tue Sep 07, 2004 7:54 pm Post subject: |
|
|
| Quote: | | I'm OK to vote, but I don't know how to do that !!! |
You've to register/login as a member to be able to vote
Do it ! Every vote counts. One voice, one vote.  |
|
| Back to top |
|
 |
Nemroth
Joined: 07 Sep 2004 Posts: 262 Location: France
|
Posted: Tue Sep 07, 2004 9:23 pm Post subject: |
|
|
| BoBo wrote: | | Quote: | | I'm OK to vote, but I don't know how to do that !!! |
You've to register/login as a member to be able to vote
Do it ! Every vote counts. One voice, one vote.  |
Done... Thanks |
|
| Back to top |
|
 |
|