Closed GoogleCodeExporter closed 9 years ago
same happens on IE 8
Original comment by aru...@anm.org
on 8 Jun 2011 at 11:32
OK, I seem to have addressed the problem. The change was to
_populateFromMaster: function()
replace:
while(loopCountdown--) {
thisOpt = options[index];
self.trie.add( $.trim(thisOpt.text), theLiSet[index++]); //option.text not innerHTML for trie as we dont want escaping
}
with:
while(loopCountdown--) {
thisOpt = options[index];
if (thisOpt.selected)
this.selectedLi = theLiSet[index];
self.trie.add( $.trim(thisOpt.text), theLiSet[index++]); //option.text not innerHTML for trie as we dont want escaping
}
AND comment out the setting of the selectedLi after calling setInputFromMaster
this.visibleCount = theLiSet.length;
this.setInputFromMaster();
//this.selectedLi = null;
=================
This may not be the _best_ way of solving the problem, but currently the
behaviour appears to be closer to what I expect.
Original comment by aru...@anm.org
on 9 Jun 2011 at 12:15
Yes this is not good!
Original comment by thetoolman
on 4 Oct 2011 at 11:39
Original comment by thetoolman
on 5 Oct 2011 at 10:41
See http://code.google.com/p/ufd/source/detail?r=264 fix included in trunk and
next release.
Original comment by thetoolman
on 5 Oct 2011 at 10:42
Original issue reported on code.google.com by
aru...@anm.org
on 8 Jun 2011 at 10:52