Dear Ovtech,
I have some codes as you see in my function. I have also tried like this below but that is not function either. So I am stuck here.
Code:
$('td:not(:first) select',form).each(function () {
$(this).rules('add', {required: true});
});*/
Code:
function setupFormValidation(form) {
// $(form).validate().resetForm();
/*if ($('tbody tr', form).length < 2) {
alert("Must Have End Destination Route");
}*/
/*$('td:not(:first) select',form).each(function () {
$(this).rules('add', {required: true});
});*/
/*
$('td:not(:first) select',form).each(function () {
$(this).rules('add', {required: true});
});*/
}