Questions tagged [angular-kendo]

Robust set of Angular.js bindings for Kendo UI widgets.

The Angular Kendo project aims to provide deep integration between Kendo UI Web/DataViz and AngularJS.

More info

103 questions
0
votes
1 answer

how to select current item in kendo dropdownlist using angularjs controller?

I am using the Kendo Drop Down List with Angular. Actually i want to select current items, which means i will choose one item from partial page, it will redirect to some other page, in that page i have to select that item dynamically. HTML Code: …
bagya
  • 51
  • 10
0
votes
1 answer

Angular Kendo Splitter only binding data on the first pane

I've been having trouble figuring out why Angular is not binding data anywhere after the first pane of my Kendo-UI splitter. Here is the relevant HTML, with extraneous uses of {{formData.hello}} to illustrate when the problem occurs:
0
votes
2 answers

AngularJS version compatibility with Kendo UI

As per the Kendo Documentation here . A specific release of Kendo is associated with a Angular version. My questions is: Can I use any other angular version than supported version as my Application is hosted on a different version of angular? As of…
tntv
  • 118
  • 1
  • 1
  • 8
0
votes
1 answer

Angularjs ng-repeat not refreshed

In angularjs I have a kendo ui drop-down list: in my code, when I click on items in the drop-down list, I remove the selected item and add it to a html table (as a row element): $scope.optionsDropDownListCatalogs = { dataTextField: "Name", …
Tom
  • 4,007
  • 24
  • 69
  • 105
0
votes
1 answer

ListView scrolling choppy and slow on Android

I am building a Kendo UI Mobile + AngularJS application. I have a listview with a variable number of results, could be anything between 5 and 500. The scrolling of the listview on Android is bad. It is choppy and feels like it doesn't respond to the…
hermann
  • 6,237
  • 11
  • 46
  • 66
0
votes
1 answer

Angularjs Grid columns change are not effecting in kendo ui

I am facing one issue related to using the kendo grid with two buttons .If i click on the first button it should show three columns and if I click on the second button, it should show only two columns. But it doesn't seem to be working .My current…
0
votes
1 answer

Angular Kendo data grid resizing columns causes the headers to misalign on new remote datasource search

I have seen similar question as this but most deal with alignment on resizing. This is specific to alignment when new data is set in the datasource. I'm looking to see if I have the grid setup correctly or a possible better workaround. When I…
0
votes
1 answer

window object not available on $scope in controller / link functions

I placed a kendo-window in my html. according to the docs, the window object should be available on the scope. now, I want to bind a listener to the window's activate event from within a controller that is declared inside the window. …
jajdoo
  • 516
  • 1
  • 9
  • 21
0
votes
0 answers

Kendo Grid with Angular not always showing rows

I am sporadically seeing my grid not show any rows when in fact there are rows bound to the grid. Does anyone see if my usage pattern is incorrect when integrating angular? Thanks! EDIT - It also appears the strange behavior only occurs when leaving…
Marco
  • 2,453
  • 3
  • 25
  • 35
0
votes
1 answer

Angular-Kendo grid - cancel editing breaks entire grid

I have a grid which works normally while adding, removing, deleting rows. Now, troubles come when I try to add row and then I click cancel. After that, my entire grid element loses .data('kendoGrid') (it returns undefined after that). I don't have…
Slaven Tomac
  • 1,552
  • 2
  • 26
  • 38
0
votes
1 answer

Kendo NavBar/TabStrip SPA Setup

Below is an example of trying to use the NavBar/TabStrip and Mobile List View within an Angular SPA. My List always takes up as much space as needed, instead of having the NavBar and TabStrip anchor at the top and bottom of the form, while allowing…
Aaron Lind
  • 405
  • 1
  • 6
  • 16
0
votes
2 answers

Angular $location.path not working as expected

I am triggering a URL change using $location.path with parameters, however those parameters are NOT getting passed to the target page. My source page is sidebar.html, and my target page is dashboard.html. In my sidebar.html I render a Kendo UI…
bob.mazzo
  • 5,183
  • 23
  • 80
  • 149
0
votes
1 answer

Maximum Call Stack Size Exceeded while binding Breeze results to Kendo UI Charts

I am working on a modified version of the Hot Towel template to create an Angular SPA. I am using Breeze to access my data services with kendo UI and data viz for widgets and charts. I am facing a similar issue to the one stated in this SO post…
0
votes
1 answer

Angular directive embed in kendo grid does not execute

I'm using kendo ui in my MVC project. So, I have this simple directive that executes when it's not rendered by kendo. .directive('okok', ['$log', function($log){ return { link: function (scope, elm) { $log.log('directive…
user1791567
  • 1,388
  • 1
  • 16
  • 29
0
votes
1 answer

How do I get all list items from a KendoComboBox

I'm trying to get all the list items from a KendoComboBox. The list has been built using a custom angularjs directive: html sgComboBoxField directive: 'use strict'; …
Tone
  • 990
  • 4
  • 14
  • 31