Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Customisable Autofill tool

Options
  • 04-11-2004 3:45pm
    #1
    Registered Users Posts: 1,711 ✭✭✭


    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 Posts: 1,031 ✭✭✭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 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