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
0
votes
1 answer

Pass data Model element to CellTemplate KoGrid

I'm using KoGrid in order to make my custom Ajax grid.I don't know how to pass model element to some Javascrit method for generating a custom Template. I tried like this and doesn't work: PluginGrid.AjaxUrl("MyControler/GetGrid").Columns( [ …
user_1856538_
  • 149
  • 11
0
votes
1 answer

Drop down list embedded in koGrid not working

I am trying to get a drop down list to populate on each row of a koGrid. Here is the jsFiddle to illistrate (notice how there is no text in the drop down boxes)- http://jsfiddle.net/wood0615/sorg9na0/2/ Here is my html-
Chris
  • 795
  • 2
  • 12
  • 27
0
votes
1 answer

kogrid - Dyanmic ColumDefs

I need to change columnDefs on a kogrid at runtime but not having much luck. I am defaulting to a data source when the view loads. When a user selects from a drop down list, a method called ChangeDataSource is fired. Within that method, I change…
Chris
  • 795
  • 2
  • 12
  • 27
0
votes
1 answer

Master / Detail Functionality in kogrid

I want to implement Master / Detail Functionality in kogrid. So that when I select any field of first grid table all the other details will be shown in next detail grid. Can anybody have any hint how to implement this.
Shivagoy
  • 373
  • 3
  • 5
  • 15
0
votes
1 answer

How to restrict max rows selected to 25 in kogrid (multi selection enabled)

I am trying to restrict the number of rows selected in kogrid to 25 as page size is more than 25 records. I tried implementing beforechange, but it didn't work for me. Can anyone please help me on this?
0
votes
1 answer

Make koGrid respect observable properties

I've been writing an app with the kogrid, recently I changed my datasource from an array of objects to an array of knockout objects. However, to my surprise when I update the observable properties within my objects the grid is not updated. Here is…
cwohlman
  • 763
  • 6
  • 21
0
votes
1 answer

KoGrid save visible columns

I have a KoGrid and want to be able to save visible columns when a user revisits the page. I would save data in json to a cookie or on the database, but how can I get notified when a column's visible attribute is changed, and load visibility on…
0
votes
1 answer

Why do my koGrid columns go super wide when trying to make it narrower, then you can't drag it back

I am posting this in hopes that someone else will be helped. I have a koGrid (using version 2.1.1) with about 25 columns. I have both width and minWidth set on the columns. When the grid comes up it displays ok but sometimes I want to adjust the…
K Kimble
  • 249
  • 3
  • 8
0
votes
1 answer

How to Create a Footertemplate for KoGrid?

How can I create footer Template for a koGrid to display sum of a column? gridOptions : { displaySelectionCheckbox: false, data: items, // selectedItems: self.selectedItems, multiSelect: false, …
Midhuna
  • 4,523
  • 4
  • 21
  • 22
0
votes
1 answer

koGrid Row selection did not updating the row selection checkbox

I have used KoGrid in my web page and I had opted for multiple row selection. as a result of which a checkbox column as first has been added in my grid. but when I select the KoGrid by clicking on the row the check box is marked but when I clicked…
Animesh
  • 323
  • 3
  • 19
0
votes
1 answer

Window resizing with multiple KoGrid objects sets the width of any hidden KoGrids to zero

This is probably an easy question for a CSS (or maybe a KoGrid) expert (which I am neither). The setting is a web page using Knockout and JQuery with one-to-many KoGrids. Only one is grid is "display:block" at a time. All the others are…
K Kimble
  • 249
  • 3
  • 8
0
votes
1 answer

Kogrid Column reordering is not working in mozilla firefox

I am using koGrid in my web page. Everything is works fine in Chrome, but when it comes to Fire fox and safari the Column reordering is not working. I had written following code: in js file self.gridOptions = { data: self.reportData, …
Animesh
  • 323
  • 3
  • 19
0
votes
2 answers

KoGrid: Default sorting not working

As part of koGrid 2.1.1 I was not able to make the default sorting to work, meaning that if you want your grid to be sorted by a specific column/direction you won't get the expected behavior. Default sorting in koGrid is achieved by sortInfo while…
Alan Souza
  • 7,475
  • 10
  • 46
  • 68
0
votes
0 answers

KOGrid - SelectColumnMenu hides behind data

I am unable to display SelectColumnMenu when KOgrid has data. It hides behind the data. I am using knockout 2.2 and kogrid 2.2.1. Here is the image :
Bhoomi
  • 781
  • 6
  • 22
0
votes
2 answers

Does KOGrid have Aggregates?

Does KOGrid have Aggregates? I want to show Total, Min, Max under the column. If not inbuilt is there an easier way to create them?
Bhoomi
  • 781
  • 6
  • 22