adding check for blank boxes.

This commit is contained in:
Russ 2015-04-07 18:54:26 -04:00
parent 01f355a0ef
commit 1edb94620a

View File

@ -22,6 +22,14 @@ if( $_SESSION['access'] != 1 ) {
$('#start_date_time').datetimepicker();
$('#end_date_time').datetimepicker();
});
$('#select_form').submit(function(event) {
alert('test');
if ($.trim($("#is_ongoing").val()) === "" && $.trim($("#end_date_time").val()) === "") {
alert('You must enter a value for Currently Ongoing or End Date and Time');
event.preventDefault();
return false;
}
});
</script>
</head>
<body>
@ -152,7 +160,7 @@ if( $_SESSION['access'] != 1 ) {
</tr>
<tr>
<td colspan=2 class="ui-helper-center">
<input type="submit" value="Submit" />
<input type="submit" value="Submit"/>
</td>
</tr>
</table>