Forum Discussion
3 Replies
Sort By
- MCFNeilQrew CaptainI wish, but no.
I also wish you could make those user fields only show users in a certain "Role". That would make things so much faster and clean. - _anomDiebolt_Qrew EliteOf course there is a way to do this with script. The answer to every question of the type "is it possible?" is YES if you use script.
You modify the <select> to add a multiple attribute so multiple users can be selected and then further modify the RemoveUser() function (original shown below) to have the behavior you want.function RemoveUser(id) {
var select = document.getElementById(id);
if (select.selectedIndex == -1) {
showError("You must first select a name to remove from the list.");
return
}
if (!IsExplanatoryOption(select.options[select.selectedIndex])) {
var saveIndex = select.selectedIndex;
select.options[select.selectedIndex] = null;
if (saveIndex < select.options.length) {
select.selectedIndex = saveIndex
}
}
} - MichaelTamoushQrew CaptainReviving this post 4 years later. Does anyone know if it is now possible?
------------------------------
Mike Tamoush
------------------------------