473,732 Members | 2,083 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

validation problems

Hello

I have been working on this for quite some time now, and have no clue
why my app behaves the way it does.
Here is the code snippet that controls this behaviour.
/////////////////////////////////////////////////////////////////////////////////////
function validateForm()
{
var valid = true;
var today = new Date();
var curdate = today.getFullYe ar()+"-"+(today.getMon th()
+1)+"-"+today.getDate ();
if (compareDates(c urdate,"yyyy-M-
d",document.Par ms.ENDDATE.valu e,"yyyy-MM-d") != 0)
{
alert ("blah blah .");
valid = false;
}
return valid;
}
function submitForm(clic kbutton)
{
if (clickbutton.na me == "submit")
{
if (validateForm() )
{
//blah blah
document.top.ac tion = "./task_submitreco rd.jsp";
document.Parms. action = "./task_submitreco rd.jsp";
document.top.su bmit();
document.Parms. submit();
}
}
else if (clickbutton.na me == "cancel")
{
document.top.ac tion = "./task_init.jsp";
document.Parms. action = "./task_init.jsp";
document.top.su bmit();
document.Parms. submit();
}

}
/////////////////////////////////////////////////////////////////////////////////////

I have two forms on this page: top and Parms and I intend to submit
them after a validation function has worked its way through to
ensuring all values are the way I want them to be. My validation
function works fine and displays the alert messages as I want them. I
check for the valid variable in the submitForm function and only do
the submit action after validation has returned true! Although I see
the error messages which guarantees that valid has been set to false,
why does my page refresh at all? It does not go to the next page, but
it refreshes the same page and loses half the interface information.
If all the information is correct and no error messages are found,
then the new link is opened and the functionality is completed. But if
validation results in an error, then the same page keeps refreshing
itself (I hope this is clear enough).
I can press the back button to restore the page (which could be a
workaround for this case), but I would like to know what exactly is
screwing this up? Is it the multiple forms being submitted together or
is it something else? Thanks in advance.

Jun 5 '07 #1
2 1484
On Jun 5, 10:26 am, Gobind <gobind.jo...@g mail.comwrote:
Hello

I have been working on this for quite some time now, and have no clue
why my app behaves the way it does.
Here is the code snippet that controls this behaviour.
/////////////////////////////////////////////////////////////////////////////////////
function validateForm()
{
var valid = true;
var today = new Date();
var curdate = today.getFullYe ar()+"-"+(today.getMon th()
+1)+"-"+today.getDate ();
if (compareDates(c urdate,"yyyy-M-
d",document.Par ms.ENDDATE.valu e,"yyyy-MM-d") != 0)
{
alert ("blah blah .");
valid = false;
}
return valid;

}

function submitForm(clic kbutton)
{
if (clickbutton.na me == "submit")
{
if (validateForm() )
{
//blah blah
document.top.ac tion = "./task_submitreco rd.jsp";
document.Parms. action = "./task_submitreco rd.jsp";
document.top.su bmit();
document.Parms. submit();
}
}
else if (clickbutton.na me == "cancel")
{
document.top.ac tion = "./task_init.jsp";
document.Parms. action = "./task_init.jsp";
document.top.su bmit();
document.Parms. submit();
}

}

/////////////////////////////////////////////////////////////////////////////////////

I have two forms on this page: top and Parms and I intend to submit
them after a validation function has worked its way through to
ensuring all values are the way I want them to be. My validation
function works fine and displays the alert messages as I want them. I
check for the valid variable in the submitForm function and only do
the submit action after validation has returned true! Although I see
the error messages which guarantees that valid has been set to false,
why does my page refresh at all? It does not go to the next page, but
it refreshes the same page and loses half the interface information.
If all the information is correct and no error messages are found,
then the new link is opened and the functionality is completed. But if
validation results in an error, then the same page keeps refreshing
itself (I hope this is clear enough).
I can press the back button to restore the page (which could be a
workaround for this case), but I would like to know what exactly is
screwing this up? Is it the multiple forms being submitted together or
is it something else? Thanks in advance.
Never mind....I solved it! (turns out declaring your buttons as input
type submits causes a double submit action and forces a refresh if
nothing else, changed those to regular buttons and it worked)

Jun 5 '07 #2
Lee
Gobind said:
>
Hello

I have been working on this for quite some time now, and have no clue
why my app behaves the way it does.
Here is the code snippet that controls this behaviour.
/////////////////////////////////////////////////////////////////////////////////////
function validateForm()
{
var valid = true;
var today = new Date();
var curdate = today.getFullYe ar()+"-"+(today.getMon th()
+1)+"-"+today.getDate ();
if (compareDates(c urdate,"yyyy-M-
d",document.Pa rms.ENDDATE.val ue,"yyyy-MM-d") != 0)
{
alert ("blah blah .");
valid = false;
}
return valid;
}
function submitForm(clic kbutton)
{
if (clickbutton.na me == "submit")
{
if (validateForm() )
{
//blah blah
document.top.ac tion = "./task_submitreco rd.jsp";
document.Parms. action = "./task_submitreco rd.jsp";
document.top.su bmit();
document.Parms. submit();
}
}
else if (clickbutton.na me == "cancel")
{
document.top.ac tion = "./task_init.jsp";
document.Parms. action = "./task_init.jsp";
document.top.su bmit();
document.Parms. submit();
}

}
/////////////////////////////////////////////////////////////////////////////////////

I have two forms on this page: top and Parms and I intend to submit
them after a validation function has worked its way through to
ensuring all values are the way I want them to be. My validation
function works fine and displays the alert messages as I want them. I
check for the valid variable in the submitForm function and only do
the submit action after validation has returned true! Although I see
the error messages which guarantees that valid has been set to false,
why does my page refresh at all?
The problem is probably in the HTML code. If you're using the
onClick event handler of a link, but not intending to actually
link to anything, that's probably at the root of your problem.
What you see as a page refresh is the browser following the link
to the current page.

In general, it's a bad idea to submit a form via Javascript in
a validation function. Use a type=submit button and have your
onsubmit event handler return false if your validation fails.
--

Jun 5 '07 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

21
3919
by: Stefan Richter | last post by:
Hi, after coding for days on stupid form validations - Like: strings (min / max length), numbers(min / max value), money(min / max value), postcodes(min / max value), telefon numbers, email adresses and so on. I thought it might be a better way to programm an automated, dynamic form validation that works for all kinds of fields, shows the necessary error messages and highlights the coresponding form fields.
3
1410
by: arc | last post by:
I have a server object that performs zipcode validation based on zipcode entered in the web form. Ideally this should work as follows: Once the zip code is entered in the edit box it should validate the entry with this server object before moving to enter state in the next dropdown field. - What is the event by which we can do this for the edit box? (OnBlur doesnt seem to capture the text though it fires up the server object) - This...
0
1992
by: Brian Conway | last post by:
I am having some validation and insertion problems. I am using a date picker that takes the selected date and puts it to ("dd-MMM-yyyy") format, as this was the only format that Oracle would accept on an insert, however, when it does a comparision validation it is failing. I have StartDate = comparing to an invisible textbox that contains todays date EndDate = comparing to StartDate needing to be >= SetupDate = comparing to StartDate...
3
1155
by: arc | last post by:
I have a server object that performs zipcode validation based on zipcode entered in the web form. Ideally this should work as follows: Once the zip code is entered in the edit box it should validate the entry with this server object before moving to enter state in the next dropdown field. - What is the event by which we can do this for the edit box? (OnBlur doesnt seem to capture the text though it fires up the server object) - This...
1
1452
by: Simon | last post by:
Hi, Has anyone experienced the problem where validation controls stop a previously working page from submitting. Sometimes, when I move between my work machine and my home machine validation that was previously working perfectly just starts to bugger up the page. One normally happens is I'll have it working fine at work and then when I
0
8944
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8773
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9445
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9306
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
6733
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6030
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4548
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4805
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3259
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.