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;
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
add a comment |
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
Have you included js file where you defined thisAddNetworkCtrl
into yourindex.html
– chinmayan
Mar 22 at 4:31
add a comment |
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
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
angularjs grafana
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 thisAddNetworkCtrl
into yourindex.html
– chinmayan
Mar 22 at 4:31
add a comment |
Have you included js file where you defined thisAddNetworkCtrl
into yourindex.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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Have you included js file where you defined this
AddNetworkCtrl
into yourindex.html
– chinmayan
Mar 22 at 4:31