batchclose.ui.js 272 B

12345678
  1. window.changeReason = function(event)
  2. {
  3. const $target = $(event.target);
  4. const $currentRow = $target.closest('tr');
  5. const reason = $target.val();
  6. $currentRow.find('[data-name="repeatFeedbackIDList"]').toggleClass('hidden', reason != 'repeat');
  7. }