KoGrid
KoGrid copied to clipboard
A Knockout DataGrid
I got strange behavior with using KoGrid in single page app - it's adding one more row selection checkbox each time, when I am switching between tabs in my application....
Checkbox column is duplicated everytime it is loaded in second attempt, other grid on the same context also adding its checkbox column. Here's the scenario, all grids are inside jquery...
I need to clear selected programatically (Not the checbox in header), it does not work http://jsfiddle.net/eyPzH/
``` TypeError: col is undefined http://debian/fsp/dist/js/vendor/KoGrid/koGrid-2.0.6.debug.js Line 1516 ``` At: ``` col.isGroupedBy(false); ``` Actually: `Compiled At: 01/11/2013 15:58:36`, just pasted in that file. Reproduce: - `showGroupPanel: true`. - `groups: ['parent_id']`....
i have simple data like this : ``` var dataFromAjax = [ {Id : 1, Name : "Yoza", Status : 1}, {Id : 2, Name : "Dhika", Status : 1}...
Per [the documentation](http://knockout-contrib.github.io/KoGrid/#/api), passing `sortInfo` in the options should set the default sorting state. However, nothing is looking at the value that is initially passed in. This patch looks to...
Hi I suspect their is someting going o ninternal to the grid, that is causing this. function SalesReqItem(item) { var self = this; ``` self.CustomerID = ko.observable(item.CustomerId); self.Filename = ko.observable(item.Filename);...
Total Items shown in the footer for an empty grid is 1, when it should be 0 (zero) since, well, it's empty. I believe this can be fixed at line...
Hi When adding new items to the observable array that the grid is bound to, it does not trigger a new sort. Is that something we have to do ourselves...