|
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/candidates/ |
Upload File : |
/*
* CATS
* Candidates Form Validation
*
* Copyright (C) 2005 - 2007 Cognizo Technologies, Inc.
* All rights reserved.
*
* $Id: activityvalidator.js 2336 2007-04-14 22:01:51Z will $
*/
function checkActivityForm(form)
{
var errorMessage = '';
errorMessage += checkEventTitle();
if (errorMessage != '')
{
alert("Form Error:\n" + errorMessage);
return false;
}
return true;
}
function checkEventTitle()
{
var errorMessage = '';
scheduleEvent = document.getElementById('scheduleEvent').checked;
if (!scheduleEvent)
{
return '';
}
fieldValue = document.getElementById('title').value;
fieldLabel = document.getElementById('titleLabel');
if (fieldValue == '')
{
errorMessage = " - You must enter an event title.\n";
fieldLabel.style.color = '#ff0000';
}
else
{
fieldLabel.style.color = '#000';
}
return errorMessage;
}