Angular-Kendo bindings don't appear to update when navigating to a different route on the same controller. I tried to create a repro here http://dojo.telerik.com/UtIWa, but the dojo area doesn't appear to work either with this or the original angular-kendo example.
Angular-Kendo bindings don't appear to update when navigating to a different route on the same controller. I tried to create a repro at http://dojo.telerik.com/UtIWa. Unfortunately, neither this nor the angular-kendo demo dojo appear to run.
Basically, when I navigate to the page the first time, the grid loads. When I navigate to another route on the same controller, the page re-renders but doesn't load the grid at all. I noticed that gridOptions is set again, but the dataBound field is never called on subsequent calls, only the first.
Angular-Kendo bindings don't appear to update when navigating to a different route on the same controller. I tried to create a repro at http://dojo.telerik.com/UtIWa. Unfortunately, neither this nor the angular-kendo demo dojo appear to run.
Basically, when I navigate to the page the first time, the grid loads. When I navigate to another route on the same controller, the page re-renders but doesn't load the grid at all. I noticed that gridOptions is set again, but the dataBound field is never called on subsequent calls, only the first.
The nodes comprising my HierarchcalDataSource possess two fields that hold potential children and all children from both fields need to be displayed in my kendoTreeView. But the model.children property only allows specifying a single field (I believe - still very new to this). Basically I am looking for something that does the following where the two children fields are idenfied as 'Children1' and 'Children2':
I do not want to allow users to select recurring events when creating new events. Therefore, I would like to edit the template, so that this option is not available.
Does anyone have a code example of how to do this in AngularJS?
Hi,
I have used tree view on one of my edit page. On page load tree view shows 2 nodes and their children as checked out of 5 nodes. I want to retain these 2 checked nodes with children after reset action. On UI I can see 2 nodes and their children as checked after reset but at script level some how model containing value of tree node becomes empty. How to retain this model value at script level?
I did implement my own logic to get data from a server with a custom dataSource.Transport.Read function.
When receive the data from the server, every items are strings. I would like a generic solution to parse those items according to the grid schema / column definition.
For example, I would like a date received as the following string "2014-12-09T14:32:54" to be parsed as a javascript data object.
I know such behavior is probably implemented somewhere in the grid as native dataSource.Transport.Read call to OData / AJAX services will parse the data returned by those services.
How can I implement the same logic for a custom dataSource.Transport.Read function?