Master Posted January 30, 2017 Report Share Posted January 30, 2017 How to enable multi select for more than one fields on submission page Quote Link to comment Share on other sites More sharing options...
MayMusic Posted January 30, 2017 Report Share Posted January 30, 2017 Insert the code below in the Footer of the page in source tab and replace the IDs on this line to your listbox IDs: Array("InsertRecordState", "InsertRecordCity"); <SCRIPT LANGUAGE="JavaScript"> var o_els = new Array("InsertRecordState", "InsertRecordCity"); for (var i = 0; i < o_els.length; i++) { document.getElementsByName(o_els[i])[0].multiple=true; } </SCRIPT> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.