I created a basic html forms which includes some selectable options via checkboxes and some textfields for things like user name and address data.
Each time a user tries to fill out the form with Chrome's AutoFill option, Chrome seems to uncheck all Checkboxes.
Is this a general Bug in Chrome and how can I solve this problem?
Seems to be an issue with Chromium, hopefully it will be fixed in the next version: https://code.google.com/p/chromium/issues/detail?id=244645
Related
I recently added a location search field on my site which shows suggestions based on what you type, but on Microsoft edge, a menu pops up on clicking on the input field. How can I disable this menu from appearing on just this input field of my site?
Based on the image you provided, I think this should be caused by some default settings in Edge. If you want to turn off this prompt, just navigate to: edge://settings/personalinfo in Edge and disable this feature like this image below:
I had today the same problem. I had input field without label and empty placeholder. Setting placeholder"..." and making the placeholder transparent makes that edge does not anymore offer "type / ..."
Hth
I believe what you're looking for is:
spellcheck="false" autocomplete="off" aria-autocomplete="none"
The aria-autocomplete seems to prevent that box from popping up and the spellcheck seems to also stop the spell checker one from displaying.
There are places where autocomplete and spellcheck would come in handy, but NOT in single-line fields like email, website, or an <input> where I have my own Bootstrap dropdown-menu/dropdown-item list that displays retrieved DB records via AJAX as the user types (in this case, the Edge popups were ovelaying my DropDown list).
Anyway, adding this code to the <input class="whatever" id="whatever" spellcheck="false" autocomplete="off" aria-autocomplete="none" placeholder="whatever" value="whatever" > seems to solve the issue and you don't have to get all your users to change the browser attributes or mess with the placeholder. Hope this helps... :)
I have a very very weird bug. In Google Chrome everything is OK, only IE has this problem.
I use an AngularJS and ui-select component to create a multiple selects.
In IE, when I click into text input element, I can't type anything and even placeholder is not removed.
But when I click to URL address bar or click somewhere into DOM in Developer Tools (after hitting F12) first and then I click into that input, it normally works and I can write into input to filter options.
I tried a lot of with focus/blur, but nothing helps me. Please, did someone have similar problem?
Code:
Turns to:
I want to select the files using file-selector after getting confirmation from the user through dialog box. I have used below code to make it work.
angular.element('#ngFileElementId').trigger('click');
It's working fine in firefox i.e. displaying file-selector using which user can select multiple files after providing confirmation through dialog box but it's not working in chrome.
I think, it is probably a setting error in Chrome which is affecting the working of ng-file-upload.
CodePen Issue Generator
Thanks for Reading it.
Regards
Ajay
Quite new to chrome extensions, so any advice is welcome. When I click the extension icon in chrome, the popup comes up, I check checkboxes & select options in dropdowns, but when I close it and reopen it, it's all resetted. How would I make the popup.html remember checkboxes that are checked and the selections in the dropdown?
The chrome.storage API allows you to store, retrieve, and track changes to user data.
http://developer.chrome.com/extensions/storage
I have an issue in our currently running .net application. we are using autocomplete extender control associated with city textbox for city selection. Due to slow internet connection, when user uses this application with partially rendered, it is not suggesting for entered city (highlighted in red).
I have used Page_Init event for first disable the textbox, than enable it on Page_Load, but it's not working (to prevent user for enter text when the page is not loaded completely).
Is there any solution to overcome this problem?
After loaded successfully,
So you want to disable the textboxes until the page has loaded? I am not sure if it will work like you want but have you considered using jQuery to disable the textbox? For example here, here, here