CRM-13078, fixed to show correct icon and to hide error messages
authorkurund <kurund@civicrm.org>
Fri, 2 Aug 2013 19:43:19 +0000 (01:13 +0530)
committerkurund <kurund@civicrm.org>
Fri, 2 Aug 2013 19:43:19 +0000 (01:13 +0530)
----------------------------------------
* 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

templates/CRM/Batch/Form/Entry.tpl

index 4f7b0d7ce94342b286fce709ccdbbb6922ea75a9..a3f86cedf97f6a9096dd2fdd645c805d05614bc2 100644 (file)
@@ -111,7 +111,7 @@ cj(function () {
     cj("#Entry").ajaxSubmit(options);
   });
 
-  cj('#crm-container').on('keyup change', '*', function () {
+  cj('#crm-container').on('keyup change', '*.selector-rows', function () {
     // validate rows
     checkColumns(cj(this));
   });
@@ -214,10 +214,15 @@ function checkColumns(parentRow) {
         inValidRow++;
       }
       else {
-        if (cj(this).val() && !cj('input[name="primary_contact_select_id[' + rowID + ']"]').val()) {
+        var contactIdElement = cj('input[name="primary_contact_select_id[' + rowID + ']"]');
+        if (cj(this).val() && !contactIdElement.val()) {
           inValidRow++;
           errorExists = true;
         }
+        else if (cj(this).val() && contactIdElement.val()) {
+          // this is hack to remove error span because we are skipping this for autocomplete fields
+          cj(this).next('span.crm-error').remove();
+        }
       }
     }
     else {
@@ -225,7 +230,7 @@ function checkColumns(parentRow) {
         inValidRow++;
       }
       else {
-        if (cj(this).hasClass('error') && !cj(this).hasClass('valid')) {
+        if (cj(this).hasClass('error') && (cj(this).hasClass('valid') || cj(this).hasClass('required'))) {
           errorExists = true;
         }
         else {