Dear all,I have a listbox on a web form i’m using this JS function to select all options
function selectall() {
aOptions = document.forms[0].SU_Category.options;
if(aOptions.length) {
for(var i=0; i<aOptions.length; i++)
aOptions[i].selected = 'selected';
}
}
i’m calling this when saving the document…it works on fireFox but it doesn’t work on ie…and also i’m using this formular @Trim(@Unique(SU_Category)) in input translation of the listbox…Pls help me
shana