Hi,
I'm using example http://www.igniteui.com/grid/bind-grid-with-ko ( see attached zip file) but seems like it is not working. I'm getting header but not data.
-Manish
Ok, great.
Sure I'll start new thread Thanks!
Hello,
For better handling your questions, please start a new thread if the issue is not related to the original one.
I'll have to say that at this point you need to specify all fields to be observable:
element.ID = ko.observable(element.ID);element.ContactName = ko.observable(element.ContactName);element.City = ko.observable(element.City);element.Country = ko.observable(element.Country);
Please review the modified sample.
Stuck with another issue with KO grid. See attached example my first column is contact name but it is showing ID( it should be same as last column). It's happening when i make ID as observable.
Hello Manish,
Knockout extensions are using the Updating feature to update the grid data, when the change is done through the observables.
You can also disable add/delete row through the option enableAddRow and enableDeleteRow