Skip to main content
Nintex Community Menu Bar

Repeating section drop down list options

  • September 23, 2015
  • 29 replies
  • 79 views

Show first post

29 replies

Forum|alt.badge.img+9
  • Nintex Partner
  • November 11, 2015

you can try with this :

$row.find(".cssman select").append(options);


Forum|alt.badge.img+9
  • Nintex Partner
  • November 12, 2015

That's very cool that it works !

You're welcome wink.png

Do you mean that it adds the option three times ?

If yes, you can try by replacing your first line with this one :

NWF$(".nf-outer").on("blur",".my-dropdown select",function()


Forum|alt.badge.img+9
  • Nintex Partner
  • November 12, 2015

ok, then you can add a check before adding the option :

if($row.find(".cssman select option[value='102']").length == 0) {

$row.find(".cssman select").append(options);

}


Forum|alt.badge.img+9
  • Nintex Partner
  • November 12, 2015

cool, I'm glad that I could help you.

I've taken a look at your other problem.