Questions tagged [autofill]

Autofill relates to auto-populating data into user interface forms, etc.

Autofill is an option found in software programs such as Internet browsers that allows the users to quickly fill out common forms, with fields such as their address, e-mail, or credit card information.

For example, in a traditional shipping form you see when ordering something on-line: with Autofill you can select a field in the form, choose data you want to enter, and immediately have all fields filled out.

1499 questions
22
votes
4 answers

Birthdate not autofilled in html form

I'm using a register formular on my page which should be filled by autofill if the user wants to. This works alright for all fields except birthdate with the following html:
NthDegree
  • 1,301
  • 2
  • 15
  • 29
21
votes
7 answers

How to detect when user used Password AutoFill on a UITextField

I've implemented all the app and server changes necessary to support Password Autofill on iOS 11, and it works well. I'd like it to work a little better. My username and password fields are UITextFields. I would like to identify when a user has…
Mitch Cohen
  • 1,551
  • 3
  • 15
  • 29
21
votes
2 answers

How to keep one field fixed in a formular when using auto-fill?

I want to autofill a formula to a bunch of fields in one column. I can do that by filling two fields manually then select them and drag down. I want column B's cells to be =D1*A1 , =D1*A2,... Note D1 should not change. When I drag the fields down…
Seeker
  • 1,250
  • 1
  • 16
  • 23
20
votes
7 answers

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" field that for some users Firefox keeps filling in…
Chris Barr
  • 29,851
  • 23
  • 95
  • 135
20
votes
12 answers

How to disable Chrome autocomplete feature?

We want to disable autocomplete in Chrome browser in our React JavaScript application. We have tried a bunch of solutions available on the Internet but nothing worked. autoComplete=off is not reliable and so are other ways. This is really important…
Shiva Wahi
  • 433
  • 1
  • 5
  • 15
20
votes
5 answers

Disable Chrome Autofill creditcard

I have two fields in my form which Chrome falsely identified as credit card numbers (one is for a phone number and one is for a fax number). There are also two fields for firstnames which Chrome thinks are fields for credit card names and want to…
Nait
  • 1,055
  • 1
  • 14
  • 19
19
votes
2 answers

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.
Ralph
  • 31,584
  • 38
  • 145
  • 282
19
votes
2 answers

How to enable Chrome credit card autofill for http and localhost?

i need override this "Automatic credit card filling is disabled because this form does not use a secure connection" error for local development and testing.
17
votes
5 answers

Android autofill: dispatchProvideAutofillStructure() not laid out

I have configured my app to support Android Oreo with compileSdkVersion 26. I've also set up android:autofillHints="phone" for my phone number input field. When I tap on the field, I can see "Autofill" popping up. However, when I tap on "Autofill",…
Juuso Ohtonen
  • 8,826
  • 9
  • 65
  • 98
17
votes
1 answer

Autocomplete = "new password" not working and "use password for" dropdown list still shown

I created a login form with input text for username and input of type password for userpass using visual studio 2010. I have the latest chrome Version 59.0.3071.115 (Official Build) (32-bit). Below is my code:
Mlle 116
  • 1,149
  • 4
  • 20
  • 53
16
votes
5 answers

How to get OTP from SMS - autofill

I want to catch or read OTP of SMS messages automatically. I did some tests like this code : import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { // This widget is the root of your…
khaled mohammad
  • 385
  • 1
  • 3
  • 14
16
votes
3 answers

How to enable password managers autofill feature for flutter apps?

we're currently developing a Flutter app (Dart language). There is a Login Screen with two TextField's. The password field has obscureText: true, as property, which hides any input. Password Manager More and more people are using password…
Favnyr
  • 353
  • 2
  • 11
16
votes
1 answer

Yellow box appears around EditText once it has been Auto-Filled

As you will see by the screenshot below, it's clear to see that a yellow box appears around the EditText after it has been filled in. NOTE: This ONLY happens when the text that has been entered was AUTO-FILLED!! My XML:
user8494778
15
votes
3 answers

Which Attributes Does Chrome Autofill Expect?

I was hoping to tie our site in with Chrome's Address Autofill, but I can't find any reference for how it expects the forms to be presented. I'm guessing it's looking for something pretty specific in the name= fields of the forms, but a good…
Alec
  • 151
  • 1
  • 4
15
votes
2 answers

Two DIVs inside DIV. How to auto-fill the space of parent DIV by second DIV?

Please visit this fiddle to see what I mean - I have a parent DIV, within that there are two DIVs placed in vertical order. The top DIV should have only the height of its content, whereas the bottom DIV should occupy all remain space of the parent…
Nirman
  • 6,715
  • 19
  • 72
  • 139