You are viewing limited content. For full access, please sign in.

Question

Question

Auto Complete Disable

asked on June 10, 2015 Show version history

Hi,I have a Laserfiche Forms which is 9.2.1 version,In my Form how could i disable the lookup data in single line field?

 

Please help me to achieve it? 

0 0

Answer

APPROVED ANSWER
replied on June 10, 2015

The single line field in a Laserfiche form is an HTML input field so you can do the same thing.

If you give your single line fields a CSS class, i.e. noautocomplete, then you can use the Javascript below

$(document).ready(function () {
  $('.noautocomplete input').attr('autocomplete','off');
});
0 0

Replies

replied on June 10, 2015

Hi there,

If you remove the Fill rule for that single line field, it won't be filled with lookup data.

0 0
replied on June 10, 2015

Hi,

I will explain my scenario clearly,I have a lookup rule which states that to fill the values in other fields based on the value which i selected from drop down field,its working good and i am pretty much clear about that,but i am asking about that once i submit the form and for next time when the cursor is placed on the particular field,the values already stored populates in the field as a drop down,but i haven't applied any fill rule on this field,how could i prevent from loading values in the field?

The scenario is similar to that for html input field we can set autoComplete attribute to off mode,but how to achieve this for Laserfiche single line field?

Hope you understand my scenario...

0 0
APPROVED ANSWER
replied on June 10, 2015

The single line field in a Laserfiche form is an HTML input field so you can do the same thing.

If you give your single line fields a CSS class, i.e. noautocomplete, then you can use the Javascript below

$(document).ready(function () {
  $('.noautocomplete input').attr('autocomplete','off');
});
0 0
replied on July 21, 2015

I'm having trouble getting css to disable autocomplete in IE9. Your code works in Firefox, Chrome, and IE10/11, but autocomplete refuses to turn off in IE9 and I'm stuck on 9 until the fall due to legacy app support. Any thoughts on how to modify the code to work with IE9?

Thanks,

Geoff

0 0
replied on July 29, 2019

This does not seem to work in 10.4 my lookup rules still run and clear the fields I am trying to input text using JS. 

0 0
replied on July 14, 2020

Is it possible to apply this to ALL fields on a form without using a CSS class on specific fields. 

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.