Lastpass is used by the users of one of our apps. Recently, LastPass has started trying to autofill page elements that are not username or password elements (text boxes and combo boxes, so far). Has anyone experienced this before? If so, were you able to resolve it? LastPass support suggested adding an attribute to the html element ('data-lpignore=true'). However, I don't think there is a way to do this. Thought I would ask the community to see if I am missing something. For reference, here is the html for a combo box on one the pages: <input class="widget-combobox-input" tabindex="0" aria-activedescendant="" aria-autocomplete="list" aria-controls="downshift-0-menu" aria-expanded="false" aria-labelledby="988.OMS.Snip_PONewEditTabs.comboBox3_nhe_171-label" autocomplete="off" id="988.OMS.Snip_PONewEditTabs.comboBox3_nhe_171" role="combobox" placeholder=" " value="Company Name Placeholder" > We would want to add an element like this: <input class="widget-combobox-input" tabindex="0" aria-activedescendant="" aria-autocomplete="list" aria-controls="downshift-0-menu" aria-expanded="false" aria-labelledby="988.OMS.Snip_PONewEditTabs.comboBox3_nhe_171-label" autocomplete="off" id="988.OMS.Snip_PONewEditTabs.comboBox3_nhe_171" data-lpignore="true" role="combobox" placeholder=" " value="Company Name Placeholder" > Anyone have ideas about how to accomplish this? Thanks, Mike
asked
Mike Kumpf
1 answers
0
Hi Mike,
You can set extra HTML attributes using another widget, like attribute helper. A bit cumbersome to add this widget for every time you use a combobox, though...