Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_web_howto thread: RE: 5. RE: Predictive text in a drop-down(select) box


Message #1 by "Drew, Ron" <RDrew@B...> on Wed, 26 Jun 2002 08:04:29 -0400
This is normal select processing...as an example if the visitor tabbed
to this field on the form and typed F, Florida would appear

<select size=3D"1" name=3D"BusinessState">
		<option value=3D"  " selected>Select a state</option>
                      <option value=3D"AL">Alabama</option>
                      <option value=3D"FL">Florida </option>
                      <option value=3D"NM">New Mexico </option>
                      <option value=3D"NY">New York </option>
                      <option value=3D"WY">Wyoming </option>
                      </select><br>

-----Original Message-----
From: Jennifer O'Leary (WS2) [mailto:JenniferO@W...]
Sent: Wednesday, June 26, 2002 4:27 AM
To: ASP Web HowTo
Subject: [asp_web_howto] 5. RE: Predictive text in a drop-down(select)
box


I was looking for a way to type into the drop-down (select) box and have
the list filter to match the nearest entry - something like the
drop-down list that takes the URL in Internet Explorer. Do you know how
to do this?

Subject: RE: Predictive text in a drop-down(select) box
From: "TomMallard" <mallard@s...>
Date: Tue, 25 Jun 2002 05:53:47 -0700
X-Message-Number: 5

This is a multi-part message in MIME format.

------=3D_NextPart_000_000E_01C21C0C.AD11B7C0
Content-Type: text/plain;
	charset=3D"iso-8859-1"
Content-Transfer-Encoding: 7bit

This is default behavior for javascript select boxes. It only can
highlight or search for one entry.

tom mallard
seattle
  -----Original Message-----
  From: Jennifer O'Leary (WS2) [mailto:JenniferO@W...]
  Sent: Tuesday, June 25, 2002 1:53 AM
  To: ASP Web HowTo
  Subject: [asp_web_howto] Predictive text in a drop-down(select) box


  Hello,

  I have created a database-driven drop-down list using ASP. I would
like this drop-down list to respond using predictive text (like in VB) -
that is, I would like the drop-down to filter the list and highlight the
first entry corresponding to the letter(s) entered by the user. Does
anyone know an easy way to do this?



  Thanks,

  Jen.



---

Improve your web design skills with these new books from Glasshaus.

Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=3Dnosim/theprogramm
e
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=3Dnosim/theprogramm
e
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=3Dnosim/theprogramm
e
r-20
Message #2 by "Jennifer O'Leary (WS2)" <JenniferO@W...> on Wed, 26 Jun 2002 09:27:13 +0100
I was looking for a way to type into the drop-down (select) box and have 
the list filter to match the nearest entry - something like the 
drop-down list that takes the URL in Internet Explorer. Do you know how 
to do this?

Subject: RE: Predictive text in a drop-down(select) box
From: "TomMallard" <mallard@s...>
Date: Tue, 25 Jun 2002 05:53:47 -0700
X-Message-Number: 5

This is a multi-part message in MIME format.

------=3D_NextPart_000_000E_01C21C0C.AD11B7C0
Content-Type: text/plain;
	charset=3D"iso-8859-1"
Content-Transfer-Encoding: 7bit

This is default behavior for javascript select boxes. It only can 
highlight
or search for one entry.

tom mallard
seattle
  -----Original Message-----
  From: Jennifer O'Leary (WS2) [mailto:JenniferO@W...]
  Sent: Tuesday, June 25, 2002 1:53 AM
  To: ASP Web HowTo
  Subject: [asp_web_howto] Predictive text in a drop-down(select) box


  Hello,

  I have created a database-driven drop-down list using ASP. I would 
like
this drop-down list to respond using predictive text (like in VB) - that 
is,
I would like the drop-down to filter the list and highlight the first 
entry
corresponding to the letter(s) entered by the user. Does  anyone know an
easy way to do this?



  Thanks,

  Jen.


  Return to Index