Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
DRDuquette #1
Previous Entries Appear for Text Fields
On my forms, all previous entries typed into a CFINPUT (type="text") field are
being remembered and displayed each time a user clicks into the field to begin
typing. The list grows very long and becomes an annoyance after a while. The
individual entries can be deleted one at a time but that is time consuming to
do for each field.
Is there a way to turn off the capability of the Browser or Cold Fusion to
remember all previous entries for a text field?
Thanks,
Don
DRDuquette Guest
-
editing previous text
I've selected the text layer, and when I click the T in toolbar and then try to highlight text I get a new text dialogue box instead of being able to... -
Text edit functions not working for text entry fields onMAC
In all the text-entry fields - one cannot cut, copy, paste, nor perform other normal text edit functions on MAC using Firefox. Any idea about the... -
Populate form values based on previous same form fields
This message is cross posted in alt.comp.lang.php & comp.lang.javascript I have a form for a user to input an establishment's hours and what time... -
inserting a new comment wipes out previous text on web page
Hi lawrence! On 7 Jul 2003 12:39:07 -0700, lkrubner@geocities.com (lawrence) wrote: Can you narrow down the code a bit? Put var-dumps of the Sql... -
Repeat same data from previous fields?
I have a form that reports varieties of fruit per type of container the fruit is packed. I have 12 seperate rows of data to be entered. Example:... -
TA-Selene #2
Re: Previous Entries Appear for Text Fields
This is a function of the browser and has nothing to do with ColdFusion. In IE, I believe this will work:
Go to Tools, Internet Options, Advanced, Browsing, uncheck "Use inline AutoComplete"
TA-Selene Guest
-
MikerRoo #3
Re: Previous Entries Appear for Text Fields
If you have trouble forcing all your users to change their browser preferences
:P, you can add the following attribute to your <cfinput> or <input> tags:
<input ... autocomplete="off" />
This attribute stops the history on most browsers that display it -- BUT it
also makes forms less usable when the user clicks the "back" button (because
his entries are erased).
If the form is posting to itself (same page), you can also add the
preserveData = "no" attribute to your <cfform> tag.
Finally, consider giving your users "Clear" and/or "Reset" button(s).
Regards,
-- MikeR
MikerRoo Guest



Reply With Quote

