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.