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

Question

Question

Dropdown inside Collection

asked on September 25, 2020

I have a dropdown inside of collection in Forms. I need to check the value of dropdown in javascript on blur event. How do I trigger blur event on dropdown on all rows of collection?

0 0

Replies

replied on September 25, 2020

I believe collections behave the same as tables, which means you'll target the collection first and then look for a blur on the dropdown list. Be sure to add CSS classes to both the collection and the list.

$('.MyCollection').on('blur', '.ListField', function(){
  //do stuff
});

 

0 0
replied on September 30, 2020

thanks

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

Sign in to reply to this post.