I've been working on a web form that allows a user to fill in some parameters like url, link depth, images parameters and such.
When they submit the form, I currently do the following:
- Fetch the URL and extract all of the links found on the main page, returning a count
- Convert the content into another non-HTML format
- Display a configuration stanza so the user can use it to reproduce the same action on their own local machine at a later time,
- Present the user with the non-HTML converted file format for download ("Save As...")
- etc..
What I'd like to try to do, is make the form more usable for users, without the need to issue a Submit to return much of the basic results.
I'm not looking for "javascript form valdiation", but something to actually perform an action on the server-side every time the user moves between form fields.
For example, the user enters a URL into a textfield, and as they tab to the next form element, I'm fetching the URL they've entered and returning the count of links found, as they continue to fill out the rest of the form and before they submit the form.
Enter AJAX..
Have any monks implemented AJAX form validation and XMLHttpRequest style objects and server calls with all of the form and backend processing handled via Perl itself?
I'm looking for gotchas, pointers, samples and other things I can use to learn how to do this.
Barring that, is there another approach to making the form more usable for everybody's grandmother, without using AJAX or client-side validation tricks?
Thanks!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.