Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

Customisable Autofill tool

  • 04-11-2004 03:45PM
    #1
    Registered Users, Registered Users 2 Posts: 1,715 ✭✭✭


    hi all

    just wondering if its possible to get a customisable webform autofill tool similar to the google one. We have an internal form that some users use, they have to populate a load of fields on the form. For each product the same set values go into the same fields. Users have to fill these fields manually each time. I have no control over this form so the other way around it i thought would be an autofill tool. Maybe create a separate autofill button for each product.

    Any ideas??

    Thanx


Comments

  • Registered Users, Registered Users 2 Posts: 1,033 ✭✭✭buddy


    Don't know about autofill.

    Couldn't the designer of the form make some more forms which have the field pre filled depending on the product. Are there many products?


  • Registered Users, Registered Users 2 Posts: 10,339 ✭✭✭✭LoLth


    http://www.roboform.com/

    http://www.mozilla.org/projects/ui/communicator/browser/formfill/ not sure about this one

    http://autofill.mozdev.org/screenshots.html dont know if it can be configured.


    all praise the great god Google :)


  • Closed Accounts Posts: 4,655 ✭✭✭Ph3n0m


    if you can edit the html around the form you might consider using javascript like the example below
    <html>
    <title>CodeAve.com (JavaScript: Textbox Change OnClick)</title>
    <body bgcolor="#FFFFFF">
    
    <script language=JavaScript>
    <!-- 
    function clear_textbox()
    {
    if (document.text_form.u_input.value == " Enter Your Search Here ")
    document.text_form.u_input.value = "";
    } 
    -->
    </script>
    
    
    <form name="text_form" action="http://www.codeave.com/html/post.asp" method=post>
    <input name="u_input" value=" Enter Your Search Here "  readonly>
    <input type=submit value=Submit>
    <input type=reset>
    </form>
    
    
    </body>
    </html> 
    


Advertisement