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?
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?
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'); });
Hi there,
If you remove the Fill rule for that single line field, it won't be filled with lookup data.
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...
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'); });
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
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.
Is it possible to apply this to ALL fields on a form without using a CSS class on specific fields.