I am trying to prevent printing duplicated values from a listbox to a label, this is what I did but apparently it’s not right, there’s not errors but nothing is printed out to my label, if I remove this line:
if (arSelected.indexOf(selectBox.option[i].selected == -1))
it prints out the values but apparently everytime I click and highlight on the values in the listbox, it’s going to print them out again to my label. Please kindly advice. Thanks!
<select multiple size="8" style="width: 135px" onBlur="selectAl ('QualMemTypeToBox',true)" id="QualMemTypeToBox"></select>
function selectAll(selectBox, selectAll) {
var arSelected = "";
// have we been passed an ID
if (typeof selectBox == "string") {
selectBox = document.getElementById(selectBox);
}
// is the select box a multiple select box?
if (selectBox.type == "select-multiple") {
for (var i = 0; i < selectBox.options.length; i++) {
selectBox.options[i].selected = selectAll;
if (arSelected.indexOf(selectBox.option[i].selected == -1)) {
document.getElementById('<%=uilblDestinationQualMemType.ClientID%>').innerHTML += selectBox.options[i].value + " | ";
arSelected += selectBox.options[i].selected;
}
}
}
}
try: