473,549 Members | 2,247 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Dropdown Web Control for quick data entry

Hi,
My customer is looking for a web control that allow them to perform
speedy data entry.

They wanted a dropdown list box which they can also key in the code
directly (like a text box).

I notice that current the dropdown box allow first character search,
(i.e. when user enter "P", the dropdown list box will "jump" to the first P
item).

So is there any way to allow multiple characters quick access (i.e. when
user enter "P" and then "R" then the list box will "jump" to the first item
that starts with "PR")

Thanks.

Regards
Developerforum
Please remove NOSPAMPLS
Nov 17 '05 #1
3 1490
SSW
I think work's u have to type very fast PR.

Other option is to follow the below steps
1) Open control panel
2) Double click keyboead option.
3) Change Repeat Rate scale bar close to slow.

Now try it.

Thanks,

sswalia
MCSD, MCAD, OCA

"Developerforum " <de************ *********@hotma il.com> wrote in message
news:eM******** ******@TK2MSFTN GP12.phx.gbl...
Hi,
My customer is looking for a web control that allow them to perform
speedy data entry.

They wanted a dropdown list box which they can also key in the code
directly (like a text box).

I notice that current the dropdown box allow first character search,
(i.e. when user enter "P", the dropdown list box will "jump" to the first P item).

So is there any way to allow multiple characters quick access (i.e. when user enter "P" and then "R" then the list box will "jump" to the first item that starts with "PR")

Thanks.

Regards
Developerforum
Please remove NOSPAMPLS

Nov 17 '05 #2
Tried, but that is not what my customer needs. I basically make it slower
when user enter repeated characters (e.g. "eeeeeee" will be slower)

For example, at http://msdn.microsoft.com/

All Products & Technologies
Choose a Product or TechnologyAcces sAccessibilityA ctive DirectoryActive
Server PagesApplicatio n CompatibilityAr chitectureASP.N ETAudio & VideoBizTalk
ServerBuilding Distributed Applications with .NETBusiness SolutionsCommer ce
ServerContent Management ServerData Access TechnologiesDat a AnalyzerDevice
Driver DevelopmentDire ctXExchangeFron tPageHost Integration ServerInternet
ExplorerInterne t Security and Acceleration ServerLonghornM apPointMapPoint
..NETMicrosoft ProjectMobile Internet ToolkitMobility and Embedded.NET
Compact Framework.NET Framework.NET SecurityOfficeP ocket PC &
SmartphonePriva cySecurityShare Point Products & TechnologiesSOA PSQL
ServerSQLXML & XML Mapping TechnologiesTab let PCUDDIUser
InterfaceVisioV isual BasicVisual Basic for ApplicationsVis ual C++Visual
C#Visual J#Visual FoxProVisual InterdevVisual SourceSafeVisua l StudioWeb
ServicesWindows Windows 2000Windows CEWindows ScriptWindows Server
2003Windows XPWindows XP EmbeddedXML

If user need to select "Visual Source Safe", they to be able to type "Visual
S" and this item will be selected.

Thanks.

"SSW" <fr************ @hotmail.com> wrote in message
news:ed******** ******@TK2MSFTN GP11.phx.gbl...
I think work's u have to type very fast PR.

Other option is to follow the below steps
1) Open control panel
2) Double click keyboead option.
3) Change Repeat Rate scale bar close to slow.

Now try it.

Thanks,

sswalia
MCSD, MCAD, OCA

"Developerforum " <de************ *********@hotma il.com> wrote in message
news:eM******** ******@TK2MSFTN GP12.phx.gbl...
Hi,
My customer is looking for a web control that allow them to perform
speedy data entry.

They wanted a dropdown list box which they can also key in the code
directly (like a text box).

I notice that current the dropdown box allow first character search,
(i.e. when user enter "P", the dropdown list box will "jump" to the
first P
item).

So is there any way to allow multiple characters quick access (i.e.

when
user enter "P" and then "R" then the list box will "jump" to the first

item
that starts with "PR")

Thanks.

Regards
Developerforum
Please remove NOSPAMPLS


Nov 17 '05 #3
hi,
I've seen this achieved by writing some client script.
The principles are to write a function that returns a
match from the list based on the user's keypress, then
storing the exact time of the keypress in a hidden field
using the data.valueOf() function. When the user next
presses a key the search is repeated, refining the search
if the current keypress is sufficiently close to the
previous one (eg n seconds apart or less). If the time
difference is greater than this value, then search from
the beginning of the string using the current keypress
value.

good luck!
alex
-----Original Message-----
Hi,
My customer is looking for a web control that allow them to performspeedy data entry.

They wanted a dropdown list box which they can also key in the codedirectly (like a text box).

I notice that current the dropdown box allow first character search,(i.e. when user enter "P", the dropdown list box will "jump" to the first Pitem).

So is there any way to allow multiple characters quick access (i.e. whenuser enter "P" and then "R" then the list box will "jump" to the first itemthat starts with "PR")

Thanks.

Regards
Developerfor um
Please remove NOSPAMPLS
.

Nov 17 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
2702
by: A P | last post by:
Hi! I have seen some techniques like this on the web. Currently, I'm using Combo box which values came from database table. One disadvantage is when the combo box have lots of values, users are complaining since you cannot use keyboard to search the value that is needed. Hope you might help me. regards, Me
32
2680
by: Continental Translations | last post by:
Can anybody help me? I am trying to create two drop down menus, where the results of the second one vary depending on what was selected in the first one. I am using MS Script Editor in MS Front Page to do this. In my first menu, I want "English" "German" and "Russian." Now if "English" is picked, I want "French" "German" and "Spanish" to...
4
1978
by: Doslil | last post by:
I have a form which has a subform.In the main form I have only one field (this is a drop down list and has a query attached to it) which selects empno,Name from the EmployeeInformation table. The sub form stores the time sheet data for each employee.When I am able to do the timesheet data entry for the first record.But when I select the...
3
1660
by: John Blair | last post by:
Hi, I want to select an id column and a name column from the database and have the results databound to a SINGLE dropdown control with the value property matched to the database id column and the name values on display to the user. Any idea how i can do this? Sample HTML showing desired result: Thanks for any help! <select...
11
20276
by: Frank Rizzo | last post by:
I have a WebBrowser control on a .net 2.0 winforms app. I load up a page and want to get the selected entry of a dropdown. I can get the element: HtmlElement stationList = browser.Document.GetElementById("dropdownFacID"); How do I know get the selected entry (the text, not the id). Thanks.
4
6705
by: =?Utf-8?B?cmFuZHkxMjAw?= | last post by:
The code below goes into the dropdown event handler for a standard combo box. It makes the dropdown as wide as the widest text entry. Unfortunately, this combo box is on the right edge of the screen, so if the user has a really wide entry, the dropdown expands off the right edge of the screen. Any suggestions on how to modify the code below...
8
2919
by: Wingot | last post by:
Hey, I have a program I am trying to write using Visual C#, SQL Server 2005/2008, and Visual Studio 2008, and one part of it includes a Schema called Client. Inside this schema, three tables exist named Country, MedicalCondition, and Customer.
3
1708
by: =?Utf-8?B?UGF1bA==?= | last post by:
Hi I have a generic list of data list <typelistcategory; listcategory = new list <type>; I also have a dropdown box that I have put into a template column of a gridview. I was able to populate the dropdown box ok when it was outside of the gridview for (int i = 0; i <= listcategory.Count - 1; i++) {...
5
10327
by: =?Utf-8?B?Y2hlY2tyYWlzZXJAY29tbXVuaXR5Lm5vc3BhbQ== | last post by:
I have a VS 2008 ASP.NET webform that has a reportview tag on it, accessing an .RLDC report in local report. The columns for the report are essentially: Month Item #1 Item#2 Item#3 I would like to add a checkbox or dropdown control to the .RLDC and have Item #1, Item #2, or Item #3 display conditionally based on a checkbox being...
0
7548
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
1
7504
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7832
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6074
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5391
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5114
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3518
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
1
1083
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
786
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.