I am writing a javascript form validation of PreSaveAction() as below:
function PreSaveAction() {
var number1 = getTagFromIdentifierAndTitle("INPUT","TextField","Quantity");
//var ddl1 = getTagFromIdentifierAndTitle("select","DropDownChoice","Is Product Completed");
var myvar = getTagFromIdentifierAndTitle("TextArea","TextField","Description");
//if (dropdown1.value == "Yes" && date1.value == "")
if (number1.value == "" || myvar.value === "")
{
alert("Please fill all the Required Fields");
return false; // Cancel the item save process
}
if(confirm("Do you want to continue with this information?")==true)
{
alert("Successfully Submitted");
return true; // OK to proceed with the save item
}
return false;
}
and the script for getTagFromIdentifierAndTitle function
function getTagFromIdentifierAndTitle(tagName, identifier, title) {
var len = identifier.length;
var tags = document.getElementsByTagName(tagName);
for (var i=0; i < tags.length; i++) {
var tempString = tags[i].id;
if (tags[i].title == title && (identifier == "" || tempString.indexOf(identifier) == tempString.length - len)) {
return tags[i];
}
}
return null;
}
what i have observed above is it is not validating both the fields together where i am using and operator.
Am i doing something wrong in the script
Please help me on this.
Thanks in advance
getTagFromIdentifierAndTitlefunction or at least know what exactly it returns - is it the actual form element? Also what you mean "not validating both fields"? You fill only one and still get to theconfirm? – Shadow Wizard Mar 22 '11 at 15:36