Jump to content
  • 0

Set Maximum Selections In Multi-Select List Box


Elena

Question

3 answers to this question

Recommended Posts

  • 0

Try this in the footer of the submission page

 

<script type="text/javascript">
 /* "fieldName" is the variable name for the listbox type form element field. */
   var fieldName = "InsertRecordFirst_Name";

   var x=document.getElementsByName(fieldName);
   x[0].multiple=true;
 var el = document.getElementsByTagName('select')[0];

document.getElementById('Submit').onmouseover= function (){

var el = document.getElementsByTagName('select')[0];
getSelectValues(el);
}

function getSelectValues(select) {

var result = [];
  var options = select && select.options;
  var opt;

  for (var i=0, iLen=options.length; i<iLen; i++) {
    opt = options[i];

    if (opt.selected) {
      result.push(opt.value || opt.text);
    }
  }

if (result.length>10){
alert('Select max 10 options for First Name');
return false; 

  }
}

</SCRIPT>

 

Replace InsertRecordFirst_Name with the actual listbox ID value

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...