We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Getting up and running with KoGrid should be as painless as possible, and that's the way we designed it!
Make sure you have jQuery, Knockout, KoGrid.css and KoGrid-2.1.1.js loaded on your page!
DIV
<div data-bind="koGrid: { data: myObsArray }"></div>
var vm = { myObsArray: ko.observableArray([ { firstName: 'John', lastName: 'Doe' }, { firstName: 'Jane', lastName: 'Doe' } ]) };
ko.applyBindings(vm);