Cameron Posted March 24, 2016 Report Share Posted March 24, 2016 Hi everyone, I would like to allow multi select option for my listbox on the Bulk Update Form. Is it possible? Thank you for your time! Quote Link to comment Share on other sites More sharing options...
Xiang Posted March 24, 2016 Report Share Posted March 24, 2016 Hi Cameron, How are you doing? If you want only to allow multi select, I think, the following code should help (enter it in the Footer of your Bulk Update screen): <SCRIPT LANGUAGE="JavaScript"> /* "fieldName" is the variable name for the listbox type form element field. */ var fieldName = "ENTER NAME OF YOUR FIELD"; fieldName = "BulkEdit"+fieldName; var x=document.getElementsByName(fieldName); x[0].multiple=true; </SCRIPT> Have a great day! 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.