We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Getting up and running with KoGrid should be as painless as possible, and that's the way we designed it!
DIV
<div data-bind="koGrid: { data: myObsArray }"></div>
var vm = { myObsArray: ko.observableArray([ { firstName: 'John', lastName: 'Doe' }, { firstName: 'Jane', lastName: 'Doe' } ]) };
ko.applyBindings(vm);