Open GoogleCodeExporter opened 8 years ago
Wrong solution. The correct one is to change code from line 178.
Find:
===
if($t.is(":selected")) {
addListItem(id);
addSelectOption(id, true);
} else {
addSelectOption(id);
}
===
And replace by that:
===
if($t.is(":selected") && !$t.is(":disabled")) {
addListItem(id);
addSelectOption(id, true);
} else if (!$t.is(":selected") && $t.is(":disabled")) {
addSelectOption(id, true);
} else {
addSelectOption(id);
}
===
Original comment by svya...@gmail.com
on 8 Apr 2010 at 1:12
I agree, that is a better solution!
Original comment by Fdries...@gmail.com
on 8 Apr 2010 at 7:35
Thanks for posting this solution.
Original comment by ryancram...@gmail.com
on 10 Jul 2010 at 4:12
Original issue reported on code.google.com by
Fdries...@gmail.com
on 22 Sep 2009 at 8:14