I am sure there is a very easy answer to this but right now I can't figure it out. I am new to HTML 5 validation and using the required validator on several fields, including an input element and select elements. All is fine with the select elements, but when I don't enter data into the input element I get the validation popup error message but the form goes ahead and posts anyway. Here is my code :
<script type="text/javascript" src="@Url.Content("~/Scripts/knockout-2.1.0.js")"></script>
@using (Html.BeginForm())
{
<table id="addFixture" border="0" cellpadding="3">
<tr>
<td>Season</td><td><input type="text" id="txtSeason" required /></td>
</tr>
<tr>
<td>Week</td><td><select id="ddlWeek" required /></td>
</tr>
<tr>
<td>Away Team</td><td><select id="ddlAwayTeam" required /></td>
</tr>
<tr>
<td>Score</td><td><input type="text" id="txtAwayTeamScore" /></td>
</tr>
<tr>
<td>Home Team</td><td><select id="ddlHomeTeam" required /></td>
</tr>
<tr>
<td>Score</td><td><input type="text" id="txtHomeTeamScore" /></td>
</tr>
</table>
<input type="submit" onclick=" addFixture() "/>
}
<script type="text/javascript">
$(document).ready(function () {
populateTeams();
populateWeeks();
});
function populateTeams() {
$.ajax({
type: 'GET',
url: '/api/team/',
contentType: "application/json; charset=utf-8",
dataType: 'json',
success: function (results) {
var $subType = $("#ddlAwayTeam");
$subType.empty();
$subType.append($('<option></option>').attr("value", "").text("--Please select--"));
$.each(results, function () {
$subType.append($('<option></option>').attr("value", this.TeamId).text(this.TeamName));
});
var $subType = $("#ddlHomeTeam");
$subType.empty();
$subType.append($('<option></option>').attr("value", "").text("--Please select--"));
$.each(results, function () {
$subType.append($('<option></option>').attr("value", this.TeamId).text(this.TeamName));
});
}
});
}
function populateWeeks() {
var numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16];
$('<option/>').val("").html("--Please select--").appendTo('#ddlWeek');
for (i = 0; i < numbers.length; i++) {
$('<option/>').val(numbers[i]).html(numbers[i]).appendTo('#ddlWeek');
}
}
function addFixture() {
var season = $("#txtSeason").val();
var week = $("#ddlWeek").val();
var awayTeam = $("#ddlAwayTeam").find(":selected").text();
var awayTeamScore = $("#txtAwayTeamScore").val();
var homeTeam = $("#ddlHomeTeam").find(":selected").text();
var homeTeamScore = $("#txtHomeTeamScore").val();
$.ajax({
type: 'POST',
url: '/api/fixture/',
data: JSON.stringify({ Season: season, Week: week, AwayTeamName: awayTeam, HomeTeamName: homeTeam, AwayTeamScore: awayTeamScore, HomeTeamScore: homeTeamScore }),
contentType: "application/json; charset=utf-8",
dataType: 'json',
success: function(results) {
alert('Fixture Added !');
}
});
}
</script>