package manager for angularjs
Questions tagged [ngtoast]
14 questions
6
votes
6 answers
ngToast message is displaying behind the modal popup
I am using the ngToast to display the success messages in angularJs, but success message is displaying behind the modal popup.
How can I display the ngToast message on top of the Modal Popup?

YYY
- 3,440
- 5
- 20
- 24
6
votes
3 answers
Angularjs-toaster always displays toast notification on top-right
I have this sample html file. Here I am using angular-toast notification. Issue I am facing here is toast messages always appear on the top-right position.
script.js file contains
angular.module('main', ['ngAnimate',…

ng-R
- 757
- 2
- 7
- 14
4
votes
2 answers
ngx-toastr ToastrService.show() type parameter Angular 2 +
I can use ToastrService.success/error/warning/info() without problem,
but when i use ToastrService.show() i don't know which correct string type i should send
i tried send a enum like this:
export enum ToastType {
Success = 'success',
…

AndresSp
- 176
- 3
- 16
4
votes
3 answers
Angular - ngToast clear all previous toasts and show only one
I am using Angular ngToast. I am trying to show only one toast at a time. The previously displayed toast should be hidden before displaying a new toast.There should be only one toast at a time. I tried be specifying maxNumber but doesn't…

Divya
- 107
- 1
- 1
- 7
3
votes
1 answer
Angular ngToast not showing
I have an Angular app inside an asp.net mvc app. I cannot get ngToast to work. No toast message is showing and I don't see any errors. Thank you in advance for your help.
BundleConfig.cs
//angular scripts
bundles.Add(new…

tz2015
- 51
- 3
2
votes
2 answers
Why Angular Material ngToast makes the page jump?
I want to make my toast to appear in the position where the user is already positioned on the page (in the view that he is already seeing in the browser). But somehow, each time the toast appears the page is jumping to other…

iseif
- 297
- 2
- 14
1
vote
1 answer
ngToast returns undefined when used inside a service
I am trying to create a simple notification system using ngToast through this documentation - http://tamerayd.in/ngToast/. Everything seems to work correctly when using it inside my module(login-flow) but if I'm trying to pass it to a service…

Llamathrust
- 41
- 3
1
vote
2 answers
How to catch ngToast with Protractor?
I need somehow to catch ngToast message after some action. I tried different solutions from this site, but they didn't help me and I don't know why. Does anyone has a working solution ? My last attempt was like:
var HomePage =…

icharts
- 81
- 1
- 6
1
vote
0 answers
AngularJS - add ngToast configuration to *.routes.js
I have this configuration in my angularJS application
(function() {
'use strict';
angular
.module('myAppl.dashboard')
.config(configure);
configure.$inject = ['$stateProvider'];
function configure($stateProvider) {
…

quma
- 5,233
- 26
- 80
- 146
1
vote
1 answer
jsPlumb beforeDrop and ngToast message not showing instantly
I am working on a site that uses the great jsPlumb library to create a node interface.
jsPlumb has an event 'beforeDrop' that is triggered before a connection between two endpoints are connected, that I want to use to check a condition, and then…

Ronny vdb
- 2,324
- 5
- 32
- 74
1
vote
1 answer
Angular toast directive seems to ignore options attribute
working with angular, wanted toast messages...
per this questions i chose angular toast
Fire notification toaster in any controller angularjs
But when i try to set the location thusly
angularjs
toastr
ngtoast

Eric Brown - Cal
- 14,135
- 12
- 58
- 97
1
vote
1 answer
Can not build ngtoast
I'm just trying to run ngtoast, I recently came across, but it gives me an error
no such file or directory 'c:\modules'
I'm trying to run ngtoast like this:
ngtoast build
what am I doing wrong?
Here is my config file:
{
"public":…

Ucha19871
- 126
- 2
- 8
0
votes
1 answer
Network Check and show Toast on Http Request
I am very new to ionic, currently working/learning with Ionic 2. I would like to show a toast when a user goes offline. I am currently able to do that as shown in my code below (toast shows whenever user goes offline). However what i would like to…

iamMash
- 43
- 6
0
votes
1 answer
ng-Toast with Angular using $scope'd object/elements
I haven't been able to find this information using the sparse ng-Toast documentation.
I have a list of objects that I set a $scope.notifications to. I would like these objects to appear in the 'toast'. I set '$scope.notifications = x;' and then my…

nashvilleCoder
- 95
- 10