2

koGrid is causing IE7 to display its "Mixed Content" warning.

What is causing this? Is there a fix?

http://jsfiddle.net/3uyaK/1/

<div data-bind="koGrid: { data: myObservableArray }"></div>

var vm = {
  myObservableArray: ko.observableArray([{id:1, name:"a"}, {id:2, name:"b"}])
};

ko.applyBindings(vm);
Charles
  • 50,943
  • 13
  • 104
  • 142
Homer
  • 7,594
  • 14
  • 69
  • 109

1 Answers1

1

What is causing this? Is there a fix?

Maybe there is a workaround for this problem, but I wouldn't expect an official fix...

Because IE7 is not supported by koGrid.

From the closed github issue #162:

timothyswt commented
Ie7 is not supported.

nemesv
  • 138,284
  • 16
  • 416
  • 359