Questions tagged [kogrid]

koGrid is a Knockout data grid.

koGrid is a direct knockout port of ng-grid, making it easy to create styled data grids for web pages.

92 questions
9
votes
3 answers

Integrate the koGrid with the Durandal/HotTowel template

I work on an asp.net solution with the Durandal template. I try to use the koGrid (https://github.com/Knockout-Contrib/KoGrid) which is compatible with knockout. When inserting this grid in a test page managed by Durandal, it doesn't work: the grid…
Bronzato
  • 9,438
  • 29
  • 120
  • 212
8
votes
1 answer

Uncaught TypeError: grid.sortedData.peek(...).filter is not a function

I'm trying to make paging work with the KnockoutJs KOGrid. I've been following this: http://knockout-contrib.github.io/KoGrid/#paging The data that I'm passing into my view model (the vm param) contains the following: My knockout view model is as…
Rob Bowman
  • 7,632
  • 22
  • 93
  • 200
4
votes
1 answer

Grid not displaying properly

I am using KoGrid for my data representation. This is what it looks like at first: When I rotate the phone or tab the grid will display correctly, but I could not figure out how to solve this issue: Has anyone faced this issue? My Javascript: var…
ExCode
  • 444
  • 2
  • 9
  • 24
4
votes
1 answer

How Can I Pass The Item Bound To A KoGrid Cell To The ViewModel

HTML:
JS: Column definitions: { field: 'orderCatalogUpdateID', cellTemplate: '', displayName: '…
DaveB
  • 9,470
  • 4
  • 39
  • 66
4
votes
3 answers

KO Grid Display Isseues, On resize Gird shows one row. Images also included

Using the following. 1) Visual Studio 2012. 2) Hot towel template. 3) downloaded ko grid and and its css. home.html
bhushanvinay
  • 449
  • 1
  • 5
  • 21
4
votes
0 answers

Is KoGrid developing?

Development of KoGrid seems not active around 5 month... Maybe someone know something about future of KoGrid? Do someone know alternatives for KoGrid(another grid with supporting of knockout) for integration with breezejs?
Alex
  • 51
  • 2
4
votes
1 answer

koGrid Sorting - Server-Side Paging

koGrid does not seem to be able to sort all items when there are multiple pages. It looks as though it only sorts the page being displayed when you click on a column header. When you go to the next (or any subsequent or previous) page, the data is…
Jim Remedios
  • 41
  • 1
  • 5
4
votes
1 answer

KoGrid: Accessing the grid

I'm currently looking at koGrid to render dynamic data grids, and I need some customization. For example, I'd like to show and hide columns without making use of the default columns menu. This is the HTML output of that columns menu:
thomaux
  • 19,133
  • 10
  • 76
  • 103
3
votes
1 answer

KnockoutJs KoGrid unable to tick checkbox for selection

I have a KnockoutJs Ko Grid which is configured to allow the user to select multiple rows. Rows can be selected, and I am able to determine which rows have been selected in JS functions bound to a button click. However, the display isn't quite…
Rob Bowman
  • 7,632
  • 22
  • 93
  • 200
3
votes
1 answer

KO Grid Scrollbars not visible & Display issues

I am having two problems with KOgrid. 1) I could not get scroll bars in the kogrid .It is very difficult to do data entry without scroll bars. 2) I also could not get kogrid to working wihout specifying hard coded height and width.In my application…
Kenner Dev
  • 327
  • 1
  • 4
  • 13
3
votes
2 answers

How can I use rowTemplate property?

I want to change font color of a row on the basis of column value in Kogrid? Please guide on how can I set it? I have tried following:
Priyanka Chandok
  • 215
  • 1
  • 6
  • 13
3
votes
1 answer

How to hide a column in KoGrid

I have started working with koGrid. And I want to hide a special column 'id' in koGrid.How can i do that? gridOptions : { displaySelectionCheckbox: false, data: items, multiSelect: false, enableColumnResize: true, …
Midhuna
  • 4,523
  • 4
  • 21
  • 22
3
votes
1 answer

Hiding and unhiding a koGrid element

I've started working with the koGrid recently, and I really like almost everything about it - except for the fact that if it's hidden when the page first loads, you're going to be in huge trouble. I've put together a jsfiddle that demonstrates what…
Ken Smith
  • 20,305
  • 15
  • 100
  • 147
3
votes
1 answer

Drop-down list not working in a Knockout KoGrid

I'm trying to display a drop-down list in a KoGrid cell using a custom cell template and I have no ideea why it's not working as it should. I have an example of a working drop-down list using the options, optionsText, optionsValue and optionsCaption…
david.s
  • 11,283
  • 6
  • 50
  • 82
3
votes
2 answers

KoGrid update cell

I am trying to update a single cell with KoGrid, but I don't see the update happen until I sort the grid by clicking on the column header. The following is the code I'm using. JSFiddle available here: http://jsfiddle.net/b22Ex/2/ The line that's not…
krasnaya
  • 2,995
  • 3
  • 21
  • 19
1
2 3 4 5 6 7