Related questions
Give kendo datasource an angular scope variable
I'm currently trying to fill a kendo grid with remote data.
Kendo has its own function to fetch the data, but I want to use the angular factory which I created.
So I have a factory, which has a function "…
Angular + Kendo: Default placeholder for drop down list
I was wondering how to set placeholder for drop down list in kendo ui + angular.
Currently I have:
Template
<select kendo-drop-down-list ng-model="selectedElement" k-options="options" >
</select>
Controller
...
$scope.options = {
dataTextField: 'label',
dataValueField: 'id',
dataSource: {
data: [
{
"label": "…
How to populate Kendo grid with an angular $http GET call
I'm having trouble binding a Kendo grid to an angular service call. I have an angular $http service that has a getData() method which looks like this:
'use-strict';
payrollApp.factory('dataService', function ($http, $q) {
return {
getData: function () {
var deferred = $q.…