I have a Kendo UI template that generates dynamic HTML similar to a data repeater.
- Because the Kendo template engine supports JavaScript I am using a "for, each" loop within the template itself.
- The output looks fine in Chrome, Firefox, IE9 and above but it is broken in IE8.
- You can view the snippet reproducing the issue here: http://jsbin.com/ajazuw/6.
- I cannot see any JavaScript error when the content is rendered in IE 8 so I am assuming this might be caused by an IE8 specific issue in Kendo UI.
UPDATE:
The issue was caused by an extra quote in my template. See here:http://jsbin.com/ajazuw/11 for an updated working version of my template.