Autocomplete does not appear to 'take'How do you disable browser Autocomplete on web form field / input tag?XPages server side validation not working on IE8XPages Style Class does not work on Label in browser but appears in Designerxspdocument appears to be null when saving a new documentSet “autocomplete” property of Xpages formcustom controls added as OSGI plugin appear twiceComputed styleClass on an xp:button does not appear to work correctlyLoading of view takes too long in XPagesWhy does the @EncodeURL appear not to work?xPages REST Service Results into Combobox or Typeahead Text Fieldmessage from validator class does not appear in messages control on xpage?
Attach a visible light telescope to the outside of the ISS
Taking my Ph.D. advisor out for dinner after graduation
Which is a better conductor, a very thick rubber wire or a very thin copper wire?
How many Jimmys can fit?
How do ballistic trajectories work in a ring world?
Users forgotting to regenerate PDF before sending it
How do I talk to my wife about unrealistic expectations?
What was the nature of the known bugs in the Space Shuttle software?
Gory anime with pink haired girl escaping an asylum
I don't want to be introduced as a "Minority Novelist"
Shipped package arrived - didn't order, possible scam?
Did William Shakespeare hide things in his writings?
Is "stock progression" the common way to write about a set chord progression?
Why do Martians have to wear space helmets?
Will Jimmy fall off his platform?
How does the cloaker's Phantasms action work?
In layman's terms, does the Luckstone just give a passive +1 to all d20 rolls and saves except for death saves?
Is this car delivery via Ebay Motors on Craigslist a scam?
Why did the frequency of the word "черт" (devil) in books increase by a few times since the October Revolution?
Why do airports remove/realign runways?
What does "frozen" mean (e.g. for catcodes)?
Why does the Misal rico de Cisneros uses the word "Qiſſa", and what is it supposed to mean? Why not "Miſſa" (Missa)?
What do you call a situation where you have choices but no good choice?
Why is whale hunting treated differently from hunting other animals?
Autocomplete does not appear to 'take'
How do you disable browser Autocomplete on web form field / input tag?XPages server side validation not working on IE8XPages Style Class does not work on Label in browser but appears in Designerxspdocument appears to be null when saving a new documentSet “autocomplete” property of Xpages formcustom controls added as OSGI plugin appear twiceComputed styleClass on an xp:button does not appear to work correctlyLoading of view takes too long in XPagesWhy does the @EncodeURL appear not to work?xPages REST Service Results into Combobox or Typeahead Text Fieldmessage from validator class does not appear in messages control on xpage?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have a registration form that I'm trying to prevent the fields from getting auto populated. When the user logs in, I populate their name and email address from our internal database. Once that's done, they complete another bunch of fields like phone number, address, etc. When you put the cursor in, say, the phone field, some suggestions are displayed. If you pick one, the name and email address are overwritten. I have set the autocomplete to false on all these fields but the suggestions still appear when you put the cursor in those fields. I checked the html and it is in fact set to false:
<input type="tel" id="view:_id1:_id45:PhoneNumber" name="view:_id1:_id45:PhoneNumber" autocomplete="off" class="formInputText required">
I found a suggestion of using
<xp:form autocomplete="off">
But that didn't work either. Perhaps I'm misunderstanding the autocomplete feature.
thanks
clem
xpages
add a comment |
I have a registration form that I'm trying to prevent the fields from getting auto populated. When the user logs in, I populate their name and email address from our internal database. Once that's done, they complete another bunch of fields like phone number, address, etc. When you put the cursor in, say, the phone field, some suggestions are displayed. If you pick one, the name and email address are overwritten. I have set the autocomplete to false on all these fields but the suggestions still appear when you put the cursor in those fields. I checked the html and it is in fact set to false:
<input type="tel" id="view:_id1:_id45:PhoneNumber" name="view:_id1:_id45:PhoneNumber" autocomplete="off" class="formInputText required">
I found a suggestion of using
<xp:form autocomplete="off">
But that didn't work either. Perhaps I'm misunderstanding the autocomplete feature.
thanks
clem
xpages
autocomplete is a mystery 😃: stackoverflow.com/q/2530/785061
– Per Henrik Lausten
Mar 26 at 12:03
I've tried setting autocomplete to other text and had some success, but seems hit and miss as the browsers decide that we developers don't need this control. Try autocomplete="nope"
– Paul Della-Nebbia
Mar 28 at 12:55
'Nope', it didn't work. ;-) But thanks. I am opening a PMR. Will post the answer if I get one.
– Clem
Mar 29 at 14:06
add a comment |
I have a registration form that I'm trying to prevent the fields from getting auto populated. When the user logs in, I populate their name and email address from our internal database. Once that's done, they complete another bunch of fields like phone number, address, etc. When you put the cursor in, say, the phone field, some suggestions are displayed. If you pick one, the name and email address are overwritten. I have set the autocomplete to false on all these fields but the suggestions still appear when you put the cursor in those fields. I checked the html and it is in fact set to false:
<input type="tel" id="view:_id1:_id45:PhoneNumber" name="view:_id1:_id45:PhoneNumber" autocomplete="off" class="formInputText required">
I found a suggestion of using
<xp:form autocomplete="off">
But that didn't work either. Perhaps I'm misunderstanding the autocomplete feature.
thanks
clem
xpages
I have a registration form that I'm trying to prevent the fields from getting auto populated. When the user logs in, I populate their name and email address from our internal database. Once that's done, they complete another bunch of fields like phone number, address, etc. When you put the cursor in, say, the phone field, some suggestions are displayed. If you pick one, the name and email address are overwritten. I have set the autocomplete to false on all these fields but the suggestions still appear when you put the cursor in those fields. I checked the html and it is in fact set to false:
<input type="tel" id="view:_id1:_id45:PhoneNumber" name="view:_id1:_id45:PhoneNumber" autocomplete="off" class="formInputText required">
I found a suggestion of using
<xp:form autocomplete="off">
But that didn't work either. Perhaps I'm misunderstanding the autocomplete feature.
thanks
clem
xpages
xpages
asked Mar 25 at 21:03
ClemClem
1559 bronze badges
1559 bronze badges
autocomplete is a mystery 😃: stackoverflow.com/q/2530/785061
– Per Henrik Lausten
Mar 26 at 12:03
I've tried setting autocomplete to other text and had some success, but seems hit and miss as the browsers decide that we developers don't need this control. Try autocomplete="nope"
– Paul Della-Nebbia
Mar 28 at 12:55
'Nope', it didn't work. ;-) But thanks. I am opening a PMR. Will post the answer if I get one.
– Clem
Mar 29 at 14:06
add a comment |
autocomplete is a mystery 😃: stackoverflow.com/q/2530/785061
– Per Henrik Lausten
Mar 26 at 12:03
I've tried setting autocomplete to other text and had some success, but seems hit and miss as the browsers decide that we developers don't need this control. Try autocomplete="nope"
– Paul Della-Nebbia
Mar 28 at 12:55
'Nope', it didn't work. ;-) But thanks. I am opening a PMR. Will post the answer if I get one.
– Clem
Mar 29 at 14:06
autocomplete is a mystery 😃: stackoverflow.com/q/2530/785061
– Per Henrik Lausten
Mar 26 at 12:03
autocomplete is a mystery 😃: stackoverflow.com/q/2530/785061
– Per Henrik Lausten
Mar 26 at 12:03
I've tried setting autocomplete to other text and had some success, but seems hit and miss as the browsers decide that we developers don't need this control. Try autocomplete="nope"
– Paul Della-Nebbia
Mar 28 at 12:55
I've tried setting autocomplete to other text and had some success, but seems hit and miss as the browsers decide that we developers don't need this control. Try autocomplete="nope"
– Paul Della-Nebbia
Mar 28 at 12:55
'Nope', it didn't work. ;-) But thanks. I am opening a PMR. Will post the answer if I get one.
– Clem
Mar 29 at 14:06
'Nope', it didn't work. ;-) But thanks. I am opening a PMR. Will post the answer if I get one.
– Clem
Mar 29 at 14:06
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55346382%2fautocomplete-does-not-appear-to-take%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55346382%2fautocomplete-does-not-appear-to-take%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
autocomplete is a mystery 😃: stackoverflow.com/q/2530/785061
– Per Henrik Lausten
Mar 26 at 12:03
I've tried setting autocomplete to other text and had some success, but seems hit and miss as the browsers decide that we developers don't need this control. Try autocomplete="nope"
– Paul Della-Nebbia
Mar 28 at 12:55
'Nope', it didn't work. ;-) But thanks. I am opening a PMR. Will post the answer if I get one.
– Clem
Mar 29 at 14:06