You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. Using IE 8 or below
What is the expected output? What do you see instead?
-Expected output is checkbox filtering options, they are being dynamically
built up but not being displayed in IE8, works fine in all other browsers.
What version of the product are you using? On what operating system?
-V3 GMap with filtering.
Please provide any additional information below.
-See screen shot of issue in IE 8
I have tried to narrow down the issue to see where the code is breaking. It
seems that IE 8 doesn't like this statement.
$('input:checkbox:checked')
Original issue reported on code.google.com by [email protected] on 23 May 2013 at 9:10
Yes I managed to get a fix for it, this issue was with it was the .append it
used to build up the checkbox options and labels
I changed the following and this fixed the issue for me:
$('#radios').append(('<label style="margin-right:5px;display:block;"><input
type="checkbox" style="margin-right:3px" value="{0}"/>{1}</label>').format(tag,
tag));
To:
var checkString = '';
checkboxItemString = '<label style="margin-right:5px;display:block;"><input
type="checkbox" style="margin-right:3px" value="{0}"/>{1}</label>'
var div = document.getElementById("radios");
var content = div.innerHTML;
div.innerHTML = content + checkboxItemString;
});
Original issue reported on code.google.com by
[email protected]
on 23 May 2013 at 9:10Attachments:
The text was updated successfully, but these errors were encountered: