Skip to content
Snippets Groups Projects
Commit 23246a80 authored by Kurund Jalmi's avatar Kurund Jalmi
Browse files

CRM-13078 fixed race condition and error alert

----------------------------------------
* CRM-13078: Batch Data Entry silently drops 'batch-valid' entries if no contact_id is associated with them
  http://issues.civicrm.org/jira/browse/CRM-13078
parent d5cf4608
Branches
Tags
No related merge requests found
......@@ -754,7 +754,9 @@ CRM.validate = CRM.validate || {
});
// Handle qf form errors
$('form :input.error', this).one('blur', function() {
$('.ui-notify-message.error a.ui-notify-close').click();
if ($(this).is('.ac_input')) {
return;
}
$(this).removeClass('error');
$(this).next('span.crm-error').remove();
$('label[for="' + $(this).attr('name') + '"], label[for="' + $(this).attr('id') + '"]')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment