Closed GoogleCodeExporter closed 9 years ago
Note to self -- look for a jQuery service routine to handle special characters
in text strings.
Original comment by womohun...@ittrium.com
on 6 Oct 2010 at 1:36
While building a test case for this problem, I was unable to duplicate it.
Ampersands within option text seem to work fine, and I have included examples
in the Demo and Tests pages. If you have an example where it fails, please
attach.
Original comment by womohun...@ittrium.com
on 17 Jan 2011 at 4:25
Attached is a test that shows that when the item with the & in it is selected
only the portion before the & is displayed when the drop down list is closed.
Note: It displays correctly in Firefox 3.6.13, but not in IE8.
Original comment by JRLamp...@gmail.com
on 17 Jan 2011 at 11:51
Attachments:
Hi,
the "possible fix" proposed don't resolve the problem, but move it...
now the content is ok, but the title of select list display a & instead of &.
Try this possible fix:
(version 1.1 on line 462):
replace 'controlLabel.html(text);' with
'controlLabel.html(text.replace("&","&"));'
(version 1.2qa on line 502):
replace 'controlLabel.html(text);' with
'controlLabel.html(text.replace("&","&"));'
Tested on IE6, IE7, IE8, FF3.1.16
Original comment by amedeo.z...@gmail.com
on 21 Jan 2011 at 9:08
Fixed in 1.3
Original comment by womohun...@ittrium.com
on 13 Apr 2011 at 5:01
Original issue reported on code.google.com by
JRLamp...@gmail.com
on 4 Oct 2010 at 8:13