Tagged Questions

Autofill relates to autopopulating data into user interface forms, etc.

learn more… | top users | synonyms

26
votes
7answers
10k views

Google Chrome form autofill and its yellow background

I have design problem with Google Chrome and its form autofill function. If Chrome remembers some login/password it changes a background color to a yellow one. Here are some screenshots: How to ...
15
votes
9answers
8k views

Override browser form-filling and input highlighting with HTML/CSS

I have 2 basic forms -- sign in and sign up, both on the same page. Now, I have no problem with the sign in form auto-filling, but the sign up form auto fills as well, and I don't like it. Also, the ...
13
votes
4answers
2k views

Form field names used by personal data auto-fill in browsers (Safari, Opera)

I'm looking for complete list of form field names (<input name="…">) that are recognized by auto-fill functions in major browsers. Here are some I've found to work in Safari using ...
12
votes
4answers
3k views

Add autoFill capabilities to jQuery-UI 1.8.1

here's what I currently have, unfortunately I cannot seem to figure out how to get autoFill to work with jQuery-UI... It used to work with the straight up Autocomplete.js <script ...
12
votes
6answers
8k views

How can I prevent Firefox's Autocomplete?

There's several section of our site where the user needs to enter some information, and Firefox's auto fill takes over when the page loads - mostly incorrectly! For example, there's a "Fax Number" ...
7
votes
3answers
1k views

How to trigger saved password autofill in browsers?

I have a web application written in pure JavaScript (no pre-generated HTML except for the document which loads all the JS files). This app contains a login form which is created dynamically when the ...
6
votes
2answers
830 views

Disable auto fill mode in noweb-mode

Please for the love of god how can I make Emacs stop auto-filling? I use visual-line-mode, I do not want auto fill. I can turn it off with M-x auto-fill-mode RET but in Noweb mode it gets turned back ...
6
votes
6answers
3k views

How to detect user time-zone in sign up forms?

Time zones can be hard to select from dozens of options. I would like to make this process simpler. I saw some forms in the wild that can do the best guess. I Goggled for a solution but with out any ...
5
votes
2answers
750 views

Browser Autofill and Javascript triggered events

One of our users just brought up the fact that their browsers Autofill doesn't cause JS onChange events to fire; this causes a problem with user registration for us. Is this by design? Is there a way ...
5
votes
1answer
2k views

Is it possible for a UIWebView to save and autofill previously entered form values (e.g., username & password)?

I'm building an iPhone app that is just a UIWebView of an existing mobile site that has a form-based login. When I login to the mobile site on iPhone Safari, I'm prompted to save my username/password, ...
5
votes
1answer
550 views

How to turn on emacs auto-fill-mode only for code comments?

I have tried (set (make-local-variable 'comment-auto-fill-only-comments) t) and also (auto-fill-mode 0) Though amazingly, neither of those work after emacs is restarted. I am using eschulte's ...
4
votes
6answers
5k views

Bypass all cacheing on jQuery.autocomplete(1.02)

I am using jQuery.autocomplete(1.02) on my search box and I want exact string and substring matching. I don't care (yet!) about the database load, I'm happy for it to fire off a query every keystroke ...
3
votes
1answer
323 views

What is the adoption of Web Form Autofill tools?

So I've been having a cordial debate with my coworkers (developers and designers) about the autofill tools for web forms. This is an important development question as it affects how forms might be ...
3
votes
3answers
144 views

How to trigger Autofill in Google Chrome?

I would like to know if there is some kind of special markup to enable the Chrome autofill feature for a specific form. I only found questions about how to disable it, but I would like to know if I ...
3
votes
1answer
336 views

Is there a naming convention for HTML form fields for good auto completion across all modern browsers?

Is there a naming convention for form fields? For what fields do Chrome, IE, Firefox look for? I mean, one for all, or at least most of the modern browsers. I stumbled upon: ...
3
votes
2answers
379 views

When does Chrome autofill in a web page render?

I have a customer who wanted their UI to display field names in a form (username field says "username", password field says "password", etc.). Since the form uses a password type <input> (which ...
2
votes
1answer
76 views

Autofill parts description via parts number text box

Sorry i don't have any code written because i have never written vba in access before. what i need to do is have a combobox autofill on my form to save a bit of time i have a database that has all our ...
2
votes
0answers
135 views

How to detect whether any form elements have been filled in via autofill?

I have a login form where I need to do the following: allow autofill so users who want to login without typing can continue to do so detect whether autofill was used on the form so when user later ...
2
votes
0answers
302 views

jQuery Mobile disables Mobile Safari's AutoFill

this is specifically about MOBILE SAFARI. let's not discuss other browsers. alright, i've got a form that works with Safari's AutoFill on the mac, it also works in a Mobile Safari if i remove jQuery ...
2
votes
2answers
552 views

How does form auto-filling in the browser work?

How does form autofill work in modern web browsers? Which are the most common techniques used in browsers that implement automatic form filling? -- EDIT -- The question is not about autocomplete, is ...
2
votes
3answers
335 views

auto fill fields and submit from another server, is it posible?

let's assume there is a site http:/ /testsite.com, with some filds and submit button. Is there a way, to write a javascript script, which will fill all filds with values i want, and make submit ...
2
votes
1answer
529 views

WPF: Editable ComboBox; how to make search/auto-fill functionality case sensitive?

Say I have a ComboBox, like so: <ComboBox IsEditable="True" Height="30"> <ComboBoxItem>robot</ComboBoxItem> <ComboBoxItem>Robot</ComboBoxItem> </ComboBox> ...
2
votes
2answers
2k views

zerofill a interger php

Hay, how would i go about 'zero filling' an integer? ie 1 becomes 0001 40 becomes 0040 174 becomes 0174 Thanks
1
vote
2answers
24 views

Typing Autofill form

I've tried to google my answer but I'm having no luck, I have a form on my website but I want it to auto-fill. e.g. in the colour category box, the user can type "r" and Red with be available to ...
1
vote
1answer
74 views

How to autofill other form fields upon click with PHP

I have a simple form right now: <form action='<? echo $PHP_SELF;?>' method='POST'> Username:<input type='text' name='username'><br> Email:<input type='text' ...
1
vote
1answer
37 views

Autofill data from one tab to another under certain criteria

I enter customer details onto an excel 2010 spreadsheet, ie customer name, date, description of order, amount of order etc. Sometimes, under certain criteria, the same or part of the same information ...
1
vote
0answers
54 views

How can I disable the iPhones's AutoFill bar on my <input>s?

I've got a PhoneGap app with an <input type="number" />. The problem is that the keyboard has a toolbar above it with Previous, Next, and Autofill. There's only one form field, so Next and ...
1
vote
2answers
48 views

How do I set the Emacs fill-column for a specific mode?

I would like to set the fill-column in Emacs to 120 for Clojure-mode, but leave it at the default (80) otherwise. How can I do this in my .emacs file? Thanks.
1
vote
1answer
77 views

Web2py AJAX autofilling of form

i've a from an i want to fill it automatically based on information from a data base and filled fields : in db_wizard.py db.define_table('sender', Field('name'), # e.g. Daniel Field('email'),# ...
1
vote
2answers
227 views

Increment Autofill Range by Variable Number

A requirement for a work project is to sum hourly values together by day for a certain number of categories. These values are stored in a spreadsheet in one long column; to get the values, I sum ...
1
vote
3answers
301 views

Help user registration by using iPhone default email and name

I'm creating a registration for my iPhone application and would like to add the ability to guess the phone's default name and email to minimize the amount of typing for the user. What APIs could be ...
1
vote
1answer
230 views

Emacs: Set fill-column in Change Log Mode

Very specific question that I hope is not too dumb. (setq-default fill-column 120) sets the width of the buffer fill to 120 columns. Default for me otherwise is 74. This command, when put in my ...
1
vote
2answers
3k views

VB.net WebBrowser click on button

I am working at a small VB.NET project which autofill the fields on Yahoo register page. I was wondering if there is a way to click on "Check" button and see if the entered ID is ok or not, something ...
1
vote
1answer
535 views

Safari for iPad: How to hide the Autofill Bar above the keyboard?

I'm coding an iPad application that uses a UIWebView which contains an <input> tag. It doesn't make sense in the context of the app to use AutoFill, but when editing the field, a bar appears ...
1
vote
1answer
336 views

Jquery Autocomplete and Auto Suggest

How do you stop the auto suggest feature from dropping down suggestions while using jquery autocomplete. The auto suggest is dropping down over the autocomplete selections. Its terribly annoying. ...
1
vote
2answers
235 views

C# control browser

Please suggest how can write c# to control browser to go to url and auto fill in specific element
1
vote
2answers
330 views

Auto Fill Mobile Safari Prompt

Is possible to display a prompt in mobile safari to ask a user to auto-fill a fieldset with their contact info?
1
vote
3answers
793 views

How Do You Set Value of Input Element Programmatically Through CSharp?

Hello I am trying to automate my IE to log into a website but the problem is that the input elements do not have an HTML ID attribute! For example: <input type="text" name="user" size="15" ...
1
vote
2answers
558 views

Writing web forms filler/submitter with QT C++

I'm scratching my head on how to accomplish the following task: I need to write a simple web forms filler/submitter with QT C++, it does the following: 1) Loads page url 2) Fills in form fields 3) ...
1
vote
4answers
787 views

Zend Framework: Post to different action then return to original action if fails validation AND keep form fields

This might sound like an odd scenario, but I've got two forms on one page. One is just posting back to itself. I made the second post to another action to keep the code cleaner. Maybe not the right ...
1
vote
2answers
419 views

Disable auto-fill-mode locally (or un fill-paragraph) with emacs

I use M-q for fill-paragraph, can I do the un-fill-paragraph in auto-fill-mode? With org mode, I sometimes enter [[Very long HTML][Name with spaces]], and for the 'Name with spaces' the auto-fill ...
1
vote
3answers
925 views

Using jQuery to “auto-fill” a second text box, based on input from the first

Alright, so basically what I'm trying to do is use the value (which in most cases is autocompleted) of a text box to fill in another text box with data pulled from the database. The user will input a ...
1
vote
0answers
70 views

Retrieve autogenerated key in Oracle with SubSonic 2.2

I'm currently using SubSonic 2.2 to code against an Oracle XE DB, which carries certain tables that have a primary key which gets automatically filled by means of a sequence and corresponding trigger. ...
1
vote
1answer
630 views

How can autofill another text box as I type in the first textbox in jquery and ajax

How can I generate a result from jquery + ajax in a another text box <form action="someanotherpage.php"> <input type="text" name="data" value="" id="data"/> <input type="text" ...
1
vote
1answer
246 views

looking for jquery form plugin for easy filling form fields

The example ajax form <form method="post"> <input type="text" name="name" /> <input type="text" name="email" /> <select name="group"> <option value="1">group ...
1
vote
3answers
1k views

How to disable the autofill in browser text inputs selectively via code?

Is it possible to selectively disable the autofill feature in text fields using code? I'm developing my custom code in ASP.Net AJAX to search for the suggestion in the database and I would like to ...
1
vote
1answer
33 views

fiiling data base randomly

i need to generate my sql server 2005 database for testing a multithreaded application. it must be morre than 3 gb at least, what should i do
1
vote
1answer
397 views

Auto Fill the Time in infopath

I would like to know if there is a way that I can have the time be auto filled when the user enters 10 I then want it to show 10:00. how can I do this?
0
votes
1answer
20 views

Need (AutoFill + Multi Select) Drop down control in jQuery

One of my client has asked for both "Multi Select and Auto Fill" feature in single control. Look at this image: I want something like above. Control should have both Ajax based auto fill and ...
0
votes
1answer
30 views

HTML form autofill with Javascript variable?

i am developing a web tracker for my site, and one of the ways i am transferring data, is by auto-filling form data on page load, with javascript queries being used to fill each field..... i just ...

1 2