![]() |
| ||
| Javascript, Form fields validation and submit Hi! I've a HTML form I've a function with some parameters that checks the value of each field (it's called within a onBlur event). This function check the type and other restrictions about that field. I must create a function that checks that all required fields (or options or other kind of form field) are filled (or checked) before submit that form. I thought to have a global variable where store the validation of each needed field, but I think there must be a better (smarter) way to do the job... and I'm a bit "worried" on fields that are not "editable" like options, checkboxes and so on... Any suggestion will be appreciated! TYIA |
| ||
| Re: Javascript, Form fields validation and submit On a large system I helped develop, we had this issue. Customers could order various products for print, and see a real-time PDF of the customized product before they ordered. Each product could have a custom form, and each form element could have custom validation. We didn't find any shortcuts! Sometimes coding is hard work. Everything was database driven, and the site was written in classic ASP. We had a database table full of JavaScript validation routines we'd built-up over time. When the server script ran, it would make the appropriate event-handler assignments to the proper tags. We would dynamically author a single "validate" routine, and each object that required validation would call this function, passing itself in as a parameter. Based on the parameter/object, it would call the appropration clause in the routine to validate itself. |
| ||
| Re: Javascript, Form fields validation and submit When you do the submit call the validation process and loop the form elements. Inside that loop create switch that contains all the form element types your form contains and then process each element based on it's type! example...
printf |
| ||
| Re: Javascript, Form fields validation and submit ok thank you, I think that it's a good solution. I'll try it ;-) (note: just to let you know my little job: I'm developing a solution that generates a form from a XML Schema file (that supports the fundamental types and structures) and I must have a "client-side" type check before the real submit... ) Thank you friends! I hope to be able to help you in the future if you need help, obviously! ^_^ |
| ||
| Re: Javascript, Form fields validation and submit I'm wondering if I have a related issue. I'm creating a form to request credit for customers for various reasons. There may be one reason, or more than one. As a result, I have a top section where the salesman enters in the account number, his ID number, the date, and the amount for the credit. The second section has checkboxes for each reason with a textbox for a detailed explaination. This way, they can select as many reasons as they need to. On the bottom, they enter in the name of the approving manager. Those are required. Optional is the ability to enter their own e-mail address to have the completed form mailed back to themselves, or to e-mail a link to the blank form to someone else. I need to make sure that the top information (account, sales, date, amount) are filled in, that at least one checkbox is selected, that the textbox associated with that checkbox is filled in, and that there is something in the approval box when the form is submitted. I want to verify this all client side before it gets submitted to the ASP file that e-mails it. Would I use a similar method? |
| ||
| Re: Javascript, Form fields validation and submit Links of what's been done so far... http://www.imperialbag.com/sa/tcredit_request.html http://www.imperialbag.com/sa/tcredit_request2.asp http://www.imperialbag.com/sa/tcredit_request3.js Again, any help is greatly appreciated. |
| ||
| Re: Javascript, Form fields validation and submit New links... those first ones won't work. http://www.imperialbag.com/sa/t_credit_request.html http://www.imperialbag.com/sa/t_credit_request2.asp http://www.imperialbag.com/sa/t_credit_request3.js Thanks. |
| ||
| Re: Javascript, Form fields validation and submit Had to change a few page references, but the links should all be working now for testing. But, I am definitely still in need of help. |
| ||
| Re: Javascript, Form fields validation and submit Nevermind... was able to get help from a coworker... |
| All times are GMT -4. The time now is 8:34 am. |
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC