etishor / KoGrid

A Knockout DataGrid

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#KoGrid : A Knockout DataGrid#

By: Eric M. Barnard

License: MIT

Dependencies: jQuery & Knockout


##About## KoGrid came out of our need for a decent datagrid that was built for MVVM/Knockout-style development. It draws considerable inspiration and architecture from SlickGrid, but is still KO throughout.

##Disclaimer## KoGrid is ALPHA currently... BUT I might know a few organizations going live in production here soon...


The sizzle:

<div data-bind="koGrid: { data: myObservableArray }"></div>
var vm = {
  myObservableArray: ko.observableArray(/* array of any complex obects */)
};

ko.applyBindings(vm);

##Want More?## Check out the Getting Started and other Docs

##Examples##

also check out the new Custom Cell Template Library ##Change Log##

  • 2012-03-07 - Huge Row Rendering Perf improvements, Easier syntax for custom cell templates, Allow Custom CSS Classes on Header and Data Cells, Allow toggling of Footer Visibility, Much better button iconography, enhanced default CSS styles, various other bug fixes
  • 2012-04-10 - Wildcard Filtering, better grid resizing during window resize events, better sorting, numerous bug-fixes

About

A Knockout DataGrid


Languages

Language:JavaScript 100.0%