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?

Java Casting: Java 11 throws LambdaConversionException while 1.8 does not

Can I ask the recruiters in my resume to put the reason why I am rejected?

meaning of に in 本当に?

Perform and show arithmetic with LuaLaTeX

What's that red-plus icon near a text?

Is it possible to do 50 km distance without any previous training?

Add text to same line using sed

LaTeX: Why are digits allowed in environments, but forbidden in commands?

Doing something right before you need it - expression for this?

How old can references or sources in a thesis be?

Why "Having chlorophyll without photosynthesis is actually very dangerous" and "like living with a bomb"?

If human space travel is limited by the G force vulnerability, is there a way to counter G forces?

What does the "remote control" for a QF-4 look like?

How does quantile regression compare to logistic regression with the variable split at the quantile?

High voltage LED indicator 40-1000 VDC without additional power supply

Modeling an IP Address

What would happen to a modern skyscraper if it rains micro blackholes?

How to determine what difficulty is right for the game?

How is it possible to have an ability score that is less than 3?

Why can't we play rap on piano?

"You are your self first supporter", a more proper way to say it

Codimension of non-flat locus

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

What's the point of deactivating Num Lock on login screens?



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