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
1
vote
0 answers

How to keep grouped rows expanded by default?

I'm new to Kogrid. By default my grid is grouped by UserRoles column. But it is showing collapsed by default. I want to keep my grid grouped and expanded by UserRoles column on a page load.
developer
  • 21
  • 2
1
vote
1 answer

How do I execute code after koGrid completely renders?

I am working with kogrid. I want to apply a tooltip to every cell in a specific column, based on the data in that column. My problem is finding exactly when/where to place my tooltip jquery: $('[data-toggle="tooltip"]').tooltip(); The colDef that…
Aaron Palmer
  • 8,912
  • 9
  • 48
  • 77
1
vote
1 answer

Breeze is not storing the right value (that is set in code) when saving during entityChanged event

I'm have a Breeze, Typescript, MVC 5.2, Knockout, Entity Framework webapp. I try to update a value of an User entity when the user clicks on a row in a grid (kogrid). The value is (should be) saved in the entityChanged eventhandler, but in Fiddler I…
RHAD
  • 1,317
  • 3
  • 13
  • 37
1
vote
1 answer

KnockOut KoGrid : How can I have row double click and a link in koGrid?

Update: Please check and suggest on how to have a column value as link in koGrid and also how can I have double click functionality in kogrid at the same time i.e., age column as link which when clicked takes me to home/about page and when I double…
Priyanka Chandok
  • 215
  • 1
  • 6
  • 13
1
vote
2 answers

Kogrid: last column of grid is only partly visible

In koGrid 2.1.1: Somehow, the last column of a grid is only partly visible. I reproduced this bug with an example using the default config of the grid. HTML:
CSS: .gridStyle { border:…
Nico Beemster
  • 590
  • 6
  • 24
1
vote
2 answers

How to Populate koGrid Groups Array

I have a koGrid configured as follows: var myItemsGrid = { data: myItems, columnDefs: [ { field: 'item.title', displayName: 'Title', cellTemplate: $("#cdfUrlCellTemplate").html() }, {…
daveywc
  • 3,136
  • 7
  • 45
  • 58
1
vote
1 answer

KnockoutJS + KoGrid - observable array as child of ko.observable(object) does not trigger update

Context I'm currently exploring KnockoutJS, combined with a KoGrid. I have an object containing several fields (which are also bound to fields), and a list of child objects which I want to show in KoGrid. jsfiddle I've prepared a jsFiddle…
sanderd
  • 809
  • 4
  • 21
1
vote
1 answer

Getting koGrid to work with Breeze and Durandal HotTowel template

I have a Durandal widget (hot towel template) containing a koGrid which I'm trying to bind to my view model. I'm pretty new to these technologies, including async deferreds and promises, so please forgive my ignorance of such matters! The view…
philicomus
  • 133
  • 1
  • 9
1
vote
1 answer

Formatting dates in koGrid using Moment.Js

I have a grid that has a JSON date field. I want to format the field using Moment.JS but can't get the cellFormatter nor cellFilter fields to work. See the following fiddle: http://jsfiddle.net/cooper/8NNAk/5/ that shows the problem. I want to…
Mark Cooper
  • 6,738
  • 5
  • 54
  • 92
1
vote
1 answer

Trying to create onclick event in node js grid using KOGrid

I would like to have a nice interactive grid view in an HTML page. I am using nodejs, express, twitterbootstrap, knockoutjs, for my technology stack. I am trying to use KOGrid to display various data points with some nice built in column sorting…
dan27
  • 1,425
  • 3
  • 14
  • 13
1
vote
1 answer

Knockout KoGrid: How can I work with select option in a grid row?

I have successfully set up a cell on a row to be a select option using the template bellow:
I'm getting a reference…
krasnaya
  • 2,995
  • 3
  • 21
  • 19