AngularJS with Grafana plugin - Error: [$controller:ctrlreg] controller is not registeredCan one AngularJS controller call another?Default $resource POST dataWhat's the correct way to communicate between controllers in AngularJS?'this' vs $scope in AngularJS controllersAngularJS : Prevent error $digest already in progress when calling $scope.$apply()What is the difference between '@' and '=' in directive scope in AngularJS?Combating AngularJS executing controller twiceHow does angularjs know to lookup the modules?404 error while developing custom datasource pluginGetting “root is undefined” error in Grafana Plugin?

Approximately how much travel time was saved by the opening of the Suez Canal in 1869?

Why are 150k or 200k jobs considered good when there are 300k+ births a month?

How does one intimidate enemies without having the capacity for violence?

How did the USSR manage to innovate in an environment characterized by government censorship and high bureaucracy?

How could an uplifted falcon's brain work?

What are the differences between the usage of 'it' and 'they'?

Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)

Show that if two triangles built on parallel lines, with equal bases have the same perimeter only if they are congruent.

can i play a electric guitar through a bass amp?

Today is the Center

Do I have a twin with permutated remainders?

What does "Puller Prush Person" mean?

How does strength of boric acid solution increase in presence of salicylic acid?

Theorems that impeded progress

What defenses are there against being summoned by the Gate spell?

How do we improve the relationship with a client software team that performs poorly and is becoming less collaborative?

Why does Kotter return in Welcome Back Kotter?

strToHex ( string to its hex representation as string)

Fencing style for blades that can attack from a distance

Smoothness of finite-dimensional functional calculus

TGV timetables / schedules?

How can I make my BBEG immortal short of making them a Lich or Vampire?

The use of multiple foreign keys on same column in SQL Server

Can a Warlock become Neutral Good?



AngularJS with Grafana plugin - Error: [$controller:ctrlreg] controller is not registered


Can one AngularJS controller call another?Default $resource POST dataWhat's the correct way to communicate between controllers in AngularJS?'this' vs $scope in AngularJS controllersAngularJS : Prevent error $digest already in progress when calling $scope.$apply()What is the difference between '@' and '=' in directive scope in AngularJS?Combating AngularJS executing controller twiceHow does angularjs know to lookup the modules?404 error while developing custom datasource pluginGetting “root is undefined” error in Grafana Plugin?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















AngularJS ngResource not working - Grafana plugin



I am currently working on a Grafana plugin, and I'm having some issues at angularJS's module system.



What I'm trying to do actually is creating a sort of service which should let me call external APIs and do stuff with it.



This is what I've done in the main module.js file




//Directive which lets use the ng-model attribute in an input file field
angular.module('grafana.services', ['ngResource'])
.directive("selectNgFiles", () =>
return
require: "ngModel",
link: function postLink(scope, elem, attrs, ngModel)
elem.on("change", () => ngModel.$setViewValue(elem[0].files))


)
.service('API', $resource =>
return $resource('LINK/:id', id: "@id",

startNetwork: method: "GET"
);
);



And this is what's on the module related to a page of the Grafana plugin



class AddNetworkCtrl 

constructor($http, backendSrv)
this.$http = $http;
this.backendSrv = backendSrv;

angular.module('grafana.controllers', ['grafana.services']).controller('AddNetworkCtrl', ($scope, API) =>
$scope.data =
databases: [],
file: null,
database: null
;

this.backendSrv.get('api/datasources').then(
data => $scope.data.databases = data,
error => sendAlert(AlertType.ERROR, 'GnB App Error', error)
);

$scope.loadNetwork = () =>
API.startNetwork(id: 1, data =>
console.log(data);
);
;
);





The problem is: when I try to load that page, it fails and prints this console error:




Error: [$controller:ctrlreg] The controller with the name 'AddNetworkCtrl' is not registered.




What am I doing wrong?










share|improve this question
























  • Have you included js file where you defined this AddNetworkCtrl into your index.html

    – chinmayan
    Mar 22 at 4:31

















0















AngularJS ngResource not working - Grafana plugin



I am currently working on a Grafana plugin, and I'm having some issues at angularJS's module system.



What I'm trying to do actually is creating a sort of service which should let me call external APIs and do stuff with it.



This is what I've done in the main module.js file




//Directive which lets use the ng-model attribute in an input file field
angular.module('grafana.services', ['ngResource'])
.directive("selectNgFiles", () =>
return
require: "ngModel",
link: function postLink(scope, elem, attrs, ngModel)
elem.on("change", () => ngModel.$setViewValue(elem[0].files))


)
.service('API', $resource =>
return $resource('LINK/:id', id: "@id",

startNetwork: method: "GET"
);
);



And this is what's on the module related to a page of the Grafana plugin



class AddNetworkCtrl 

constructor($http, backendSrv)
this.$http = $http;
this.backendSrv = backendSrv;

angular.module('grafana.controllers', ['grafana.services']).controller('AddNetworkCtrl', ($scope, API) =>
$scope.data =
databases: [],
file: null,
database: null
;

this.backendSrv.get('api/datasources').then(
data => $scope.data.databases = data,
error => sendAlert(AlertType.ERROR, 'GnB App Error', error)
);

$scope.loadNetwork = () =>
API.startNetwork(id: 1, data =>
console.log(data);
);
;
);





The problem is: when I try to load that page, it fails and prints this console error:




Error: [$controller:ctrlreg] The controller with the name 'AddNetworkCtrl' is not registered.




What am I doing wrong?










share|improve this question
























  • Have you included js file where you defined this AddNetworkCtrl into your index.html

    – chinmayan
    Mar 22 at 4:31













0












0








0








AngularJS ngResource not working - Grafana plugin



I am currently working on a Grafana plugin, and I'm having some issues at angularJS's module system.



What I'm trying to do actually is creating a sort of service which should let me call external APIs and do stuff with it.



This is what I've done in the main module.js file




//Directive which lets use the ng-model attribute in an input file field
angular.module('grafana.services', ['ngResource'])
.directive("selectNgFiles", () =>
return
require: "ngModel",
link: function postLink(scope, elem, attrs, ngModel)
elem.on("change", () => ngModel.$setViewValue(elem[0].files))


)
.service('API', $resource =>
return $resource('LINK/:id', id: "@id",

startNetwork: method: "GET"
);
);



And this is what's on the module related to a page of the Grafana plugin



class AddNetworkCtrl 

constructor($http, backendSrv)
this.$http = $http;
this.backendSrv = backendSrv;

angular.module('grafana.controllers', ['grafana.services']).controller('AddNetworkCtrl', ($scope, API) =>
$scope.data =
databases: [],
file: null,
database: null
;

this.backendSrv.get('api/datasources').then(
data => $scope.data.databases = data,
error => sendAlert(AlertType.ERROR, 'GnB App Error', error)
);

$scope.loadNetwork = () =>
API.startNetwork(id: 1, data =>
console.log(data);
);
;
);





The problem is: when I try to load that page, it fails and prints this console error:




Error: [$controller:ctrlreg] The controller with the name 'AddNetworkCtrl' is not registered.




What am I doing wrong?










share|improve this question
















AngularJS ngResource not working - Grafana plugin



I am currently working on a Grafana plugin, and I'm having some issues at angularJS's module system.



What I'm trying to do actually is creating a sort of service which should let me call external APIs and do stuff with it.



This is what I've done in the main module.js file




//Directive which lets use the ng-model attribute in an input file field
angular.module('grafana.services', ['ngResource'])
.directive("selectNgFiles", () =>
return
require: "ngModel",
link: function postLink(scope, elem, attrs, ngModel)
elem.on("change", () => ngModel.$setViewValue(elem[0].files))


)
.service('API', $resource =>
return $resource('LINK/:id', id: "@id",

startNetwork: method: "GET"
);
);



And this is what's on the module related to a page of the Grafana plugin



class AddNetworkCtrl 

constructor($http, backendSrv)
this.$http = $http;
this.backendSrv = backendSrv;

angular.module('grafana.controllers', ['grafana.services']).controller('AddNetworkCtrl', ($scope, API) =>
$scope.data =
databases: [],
file: null,
database: null
;

this.backendSrv.get('api/datasources').then(
data => $scope.data.databases = data,
error => sendAlert(AlertType.ERROR, 'GnB App Error', error)
);

$scope.loadNetwork = () =>
API.startNetwork(id: 1, data =>
console.log(data);
);
;
);





The problem is: when I try to load that page, it fails and prints this console error:




Error: [$controller:ctrlreg] The controller with the name 'AddNetworkCtrl' is not registered.




What am I doing wrong?







angularjs grafana






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 21 at 23:54









georgeawg

34.5k115370




34.5k115370










asked Mar 21 at 22:50









Riccardo Dalla ViaRiccardo Dalla Via

62




62












  • Have you included js file where you defined this AddNetworkCtrl into your index.html

    – chinmayan
    Mar 22 at 4:31

















  • Have you included js file where you defined this AddNetworkCtrl into your index.html

    – chinmayan
    Mar 22 at 4:31
















Have you included js file where you defined this AddNetworkCtrl into your index.html

– chinmayan
Mar 22 at 4:31





Have you included js file where you defined this AddNetworkCtrl into your index.html

– chinmayan
Mar 22 at 4:31












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55290396%2fangularjs-with-grafana-plugin-error-controllerctrlreg-controller-is-not-r%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55290396%2fangularjs-with-grafana-plugin-error-controllerctrlreg-controller-is-not-r%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript