You are viewing limited content. For full access, please sign in.

Question

Question

Hide previous rows in a collection

asked on June 15, 2018

Hi

I have a forms process that will require multiple reviewers to "score" an application. The scoring should be done blind, meaning each review should not see the others scores. I have the score card set up as a collection and I'm wondering if anyone has scripted a show/hide feature for collection sets?

0 0

Replies

replied on June 15, 2018 Show version history

I think I figured it out.

In case this is helpful to someone else:

  $('#q340 div.form-q').hide();
  
  $("a.cf-collection-append.form-q").click(function(){
      $('#q340 div.form-q').hide();
    $('#q340 div.form-q').last().show();
  }); 

 

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.