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

Question

Question

Forms 10 Lookup rule

asked on October 12, 2016 Show version history

If there is more than 1 value for a dropdown , blank is selected by default. If there is just 1 value, it is selected by default. The dropdown is getting data from database. 

How do I force the dropdown to always select blank even if it has just 1 value please?

 

Thanks

Priya

1 0

Replies

replied on October 12, 2016

Hi Priya,

 

you could try this JavaScript... 

$(document).ready(function () {
  $('#q1').change(function(){
    $('select[id=Field1]').val('');
  })
});

Let me know if it works for you.

Capture.PNG
Capture.PNG (16.66 KB)
3 0
replied on October 14, 2016

Thanks

 

Priya

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

Sign in to reply to this post.