|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/irtiweb/CATS/modules/joborders/ |
Upload File : |
/*
* CATS
* Job Orders Form Validation
*
* Copyright (C) 2005 - 2007 Cognizo Technologies, Inc.
* All rights reserved.
*
* $Id: validator.js 3634 2007-11-16 16:41:47Z brian $
*/
function checkAddForm(form)
{
var errorMessage = '';
errorMessage += checkTitle();
errorMessage += checkCompany();
errorMessage += checkRecruiter();
errorMessage += checkCity();
errorMessage += checkState();
errorMessage += checkOpenings();
if (errorMessage != '')
{
alert("Form Error:\n" + errorMessage);
return false;
}
return true;
}
function checkEditForm(form)
{
var errorMessage = '';
errorMessage += checkTitle();
errorMessage += checkCompany();
errorMessage += checkRecruiter();
errorMessage += checkCity();
errorMessage += checkState();
errorMessage += checkOpenings();
errorMessage += checkOpeningsAvailable();
errorMessage += checkOwner();
if (errorMessage != '')
{
alert("Form Error:\n" + errorMessage);
return false;
}
return true;
}
function checkSearchByJobTitleForm(form)
{
var errorMessage = '';
errorMessage += checkSearchJobTitle();
if (errorMessage != '')
{
alert("Form Error:\n" + errorMessage);
return false;
}
return true;
}
function checkSearchByCompanyNameForm(form)
{
var errorMessage = '';
errorMessage += checkSearchCompanyName();
if (errorMessage != '')
{
alert("Form Error:\n" + errorMessage);
return false;
}
return true;
}
function checkAttachmentForm(form)
{
var errorMessage = '';
errorMessage += checkFilename();
if (errorMessage != '')
{
alert("Form Error:\n" + errorMessage);
return false;
}
return true;
}
function checkTitle()
{
var errorMessage = '';
fieldValue = document.getElementById('title').value;
fieldLabel = document.getElementById('titleLabel');
if (fieldValue.trim() == '')
{
errorMessage = " - You must enter a job title.\n";
fieldLabel.style.color = '#ff0000';
}
else
{
fieldLabel.style.color = '#000';
}
return errorMessage;
}
function checkCity()
{
var errorMessage = '';
fieldValue = document.getElementById('city').value;
fieldLabel = document.getElementById('cityLabel');
if (fieldValue == '')
{
errorMessage = " - You must enter a city.\n";
fieldLabel.style.color = '#ff0000';
}
else
{
fieldLabel.style.color = '#000';
}
return errorMessage;
}
function checkState()
{
var errorMessage = '';
fieldValue = document.getElementById('state').value;
fieldLabel = document.getElementById('stateLabel');
if (fieldValue == '')
{
errorMessage = " - You must enter a state.\n";
fieldLabel.style.color = '#ff0000';
}
else
{
fieldLabel.style.color = '#000';
}
return errorMessage;
}
function checkCompany()
{
var errorMessage = '';
fieldValue = document.getElementById('companyID').value;
fieldLabel = document.getElementById('companyIDLabel');
if (fieldValue <= 0)
{
errorMessage = " - You must select a company.\n";
fieldLabel.style.color = '#ff0000';
}
else
{
fieldLabel.style.color = '#000';
}
return errorMessage;
}
function checkRecruiter()
{
var errorMessage = '';
fieldValue = document.getElementById('recruiter').selectedIndex;
fieldLabel = document.getElementById('recruiterLabel');
if (fieldValue == '')
{
errorMessage = " - You must select a recruiter.\n";
fieldLabel.style.color = '#ff0000';
}
else
{
fieldLabel.style.color = '#000';
}
return errorMessage;
}
function checkOwner()
{
var errorMessage = '';
fieldValue = document.getElementById('owner').selectedIndex;
fieldLabel = document.getElementById('ownerLabel');
if (fieldValue == '')
{
errorMessage = " - You must select an owner.\n";
fieldLabel.style.color = '#ff0000';
}
else
{
fieldLabel.style.color = '#000';
}
return errorMessage;
}
function checkOpenings()
{
var errorMessage = '';
fieldValue = document.getElementById('openings').value;
fieldLabel = document.getElementById('openingsLabel');
if (fieldValue == '')
{
errorMessage = " - You must enter a number of openings.\n";
fieldLabel.style.color = '#ff0000';
}
else if (!stringIsNumeric(fieldValue))
{
errorMessage = " - Openings must be a number.\n";
fieldLabel.style.color = '#ff0000';
}
else
{
fieldLabel.style.color = '#000';
}
return errorMessage;
}
function checkOpeningsAvailable()
{
var errorMessage = '';
fieldValue = document.getElementById('openingsAvailable').value;
fieldLabel = document.getElementById('openingsAvailableLabel');
if (fieldValue == '')
{
errorMessage = " - You must enter a number of openings.\n";
fieldLabel.style.color = '#ff0000';
}
else if (!stringIsNumeric(fieldValue))
{
errorMessage = " - Openings must be a number.\n";
fieldLabel.style.color = '#ff0000';
}
else
{
fieldLabel.style.color = '#000';
}
fieldValueToCompare = document.getElementById('openings').value;
if (stringIsNumeric(fieldValueToCompare) && stringIsNumeric(fieldValue) &&
fieldValue > fieldValueToCompare)
{
errorMessage = " - Remaining Openings can not be more than "+fieldValueToCompare+".\n";
fieldLabel.style.color = '#ff0000';
}
return errorMessage;
}
function checkSearchJobTitle()
{
var errorMessage = '';
fieldValue = document.getElementById('wildCardString_jobTitle').value;
fieldLabel = document.getElementById('wildCardStringLabel_jobTitle');
if (fieldValue == '')
{
errorMessage = " - You must enter some search text.\n";
fieldLabel.style.color = '#ff0000';
}
else
{
fieldLabel.style.color = '#000';
}
return errorMessage;
}
function checkSearchCompanyName()
{
var errorMessage = '';
fieldValue = document.getElementById('wildCardString_companyName').value;
fieldLabel = document.getElementById('wildCardStringLabel_companyName');
if (fieldValue == '')
{
errorMessage = " - You must enter some search text.\n";
fieldLabel.style.color = '#ff0000';
}
else
{
fieldLabel.style.color = '#000';
}
return errorMessage;
}
function checkFilename()
{
var errorMessage = '';
fieldValue = document.getElementById('file').value;
fieldLabel = document.getElementById('file');
if (fieldValue == '')
{
errorMessage = " - You must enter a file to upload.\n";
fieldLabel.style.color = '#ff0000';
}
else
{
fieldLabel.style.color = '#000';
}
return errorMessage;
}