Merge pull request #184 from colibri-software/ie_fix_options

IE workaround for some broken select boxes
This commit is contained in:
Didier Lafforgue 2011-08-30 15:06:02 -07:00
commit d121a56efc
2 changed files with 12 additions and 6 deletions

View File

@ -11,10 +11,10 @@ $(document).ready(function() {
if (context.data.new_item) {
var newItemInfo = context.data.new_item;
var option = new Option(newItemInfo.label, newItemInfo.url, true, true);
var option = makeOption(newItemInfo.label, newItemInfo.url, true, true);
context.select.append(option);
context.select.append(new Option('-'.repeat(newItemInfo.label.length), '', false, false));
context.select.append(makeOption('-'.repeat(newItemInfo.label.length), '', false, false));
}
for (var i = 0; i < context.data.collection.length; i++) {
@ -27,7 +27,7 @@ $(document).ready(function() {
for (var j = 0; j < obj.items.length; j++) {
var innerObj = obj.items[j];
if ($.inArray(innerObj[1], context.data.taken_ids) == -1) {
optgroup.append(new Option(innerObj[0], innerObj[1], false, false));
optgroup.append(makeOption(innerObj[0], innerObj[1], false, false));
size++;
}
}
@ -36,8 +36,7 @@ $(document).ready(function() {
} else {
if ($.inArray(obj[1], context.data.taken_ids) == -1)
{
var option = new Option("", obj[1], false, false);
$(option).text(obj[0]);
var option = makeOption(obj[0], obj[1], false, false);
context.select.append(option);
}
}

View File

@ -30,4 +30,11 @@ Object.size = function(obj) {
if (obj.hasOwnProperty(key)) size++;
}
return size;
};
};
// Make a DOM option for a select box. This code works around a bug in IE
function makeOption(text, value, defaultSelected, selected) {
var option = new Option('', value, defaultSelected, selected);
$(option).text(text);
return option;
}