I am having a jqGrid that contains two editable columns, start time and end time.
I have written a function call on the blur event of each of those columns for validation.
But the validation alert pop-up keeps popping up infinitely.
`editOptions: {
dataEvents: [{
type: 'blur',
fn: function (e) {
if(startTime > endTime){
alert('Invalid');
return false;}
}]}`
This editOptions is provided in both the column fields.
Note: A time picker is used in both the columns which also allows manual entry.