CRM-14070, fixes - Suppress 'limit_to' drop down when Entity is 'Activity'
authoryashodha <yashodha.chaku@webaccess.co.in>
Wed, 15 Jan 2014 10:23:08 +0000 (15:53 +0530)
committerkurund <kurund@civicrm.org>
Sat, 18 Jan 2014 00:12:13 +0000 (16:12 -0800)
http://issues.civicrm.org/jira/browse/CRM-14070

templates/CRM/Admin/Form/ScheduleReminders.tpl

index bd08ce4fe2eb9c198e8594eea4cdcbebde3d1531..4f066f0ae52fa6ec2abcec7616f6d932d6d93742 100644 (file)
     cj('#mode').change(function () {
       loadMsgBox();
     });
+
+    showHideLimitTo();
+    cj('#entity_0').change(function () {
+      showHideLimitTo();
+    });
   });
 
   function loadMsgBox() {
       }
   }
 
-  cj(function() {
-       if ( cj('#is_recipient_listing').val( ) ) {
-           cj('#recipientList').show();
-       } else {
-           cj('#recipientList').hide();
-       }
-       cj('#recipient').change( function( ) {
-           populateRecipient();
-       });
-     });
+  function showHideLimitTo() {
+    if (cj('#entity_0').val() == 1) {
+      cj('#limit_to').hide();
+    }
+    else {
+      cj('#limit_to').show();
+    }
+  }
+
+  cj(function () {
+    if (cj('#is_recipient_listing').val()) {
+      cj('#recipientList').show();
+    }
+    else {
+      cj('#recipientList').hide();
+    }
+    cj('#recipient').change(function () {
+      populateRecipient();
+    });
+  });
 
      function populateRecipient( ) {
          var recipient = cj("#recipient option:selected").val();