I got a dropdownlist box field and pre-list some numeric values on it :
say a list of page numbers,
11
22
33
41
42
43
52
..
I put some codes on change event so that once an item is clicked, it will be directed to the specific page immediately.
But the case is some users would like to enter the field and type a number rather than click.
If he tries to type 42, change event will get him to page 41 instead (as the 1st char "4" is matched),
and then accidentally amend a field there putting the rest char "2" on it.
so how can I disable typing on a drop down field?
Rgds.
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
If you select the dropdown and go to the Object > Field palette. There you can un-tick "Allow custom entry". This will prevent the user from being able to type into the dropdown.
With dropdowns I prefer scripting in the exit event.
Good luck,
Niall
Views
Replies
Total Likes
Hi,
If you select the dropdown and go to the Object > Field palette. There you can un-tick "Allow custom entry". This will prevent the user from being able to type into the dropdown.
With dropdowns I prefer scripting in the exit event.
Good luck,
Niall
Views
Replies
Total Likes
Dear Niall,
It works! Thanks for that.
Rgds.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies