KoGrid icon indicating copy to clipboard operation
KoGrid copied to clipboard

A Knockout DataGrid

Results 100 KoGrid issues
Sort by recently updated
recently updated
newest added

See issue #90 which was closed but now the jsfiddle does not work. There is a sample JsFiddle but it fails to load. I am having the same issue with...

I'm trying to select & highlight a newly added item to koGrid.data. After adding the new item to the ko.observableArray data-bind to kgGrid.SelectedItems from view model, the previous selected row...

The grid show the wrong amount of filtered items when you filter server side. The computed observable totalFilteredItemsLength needs to check useExternalFilter and then use a supplied variabel on the...

I fixed a custom filter template like this without altering the KoGrid source http://jsfiddle.net/t23Ub/1/ But i would really like to see this implemented in the source, what are the steps...

fix on my side was to call the grid's init() method after it was made visible. ``` self.isInboxVisible.subscribe(function (newValue) { if (newValue === true && !initializedgrid) { initializedgrid = true;...

Hi, I have a datagrid bound to a complex business object, and only a few properties are shown in the grid. One of the use-cases is the table-wide search on...

Reproduction: - grid with some data, selectedItems bound (doesn't have to be), multiSelect off. - select a row - sort the grid on a different column - select a new...

$userViewModel is using bindingContext to save viewModel, which is filling by KnockoutJS' internal logic, but that context can be changed by KnockoutJS is you are using "with": For example, here...

Dear all, I'm working with a KoGrid bind to an observable array mapped by using the mapping plugin. every 3 sec. i'm performing the ko.mapping.fromJS() in order to refresh my...

I've been trying to load JSON data through AJAX, and the data would load, but all the columns in the grid would overlap each other. After much fiddling of the...