Questions tagged [ionic-popup]

In the Ionic Framework, the Ionic Popup service allows programmatically creating and showing popup windows that require the user to respond in order to continue.

In the , the Ionic Popup service allows programmatically creating and showing popup windows that require the user to respond in order to continue.

The popup system has support for more flexible versions of the built in alert(), prompt(), and confirm() functions that users are used to, in addition to allowing popups with completely custom content and look.

Useful link

80 questions
0
votes
1 answer

show Ionic Popup automatically without any button click in ANgularJS

I have an ionic popup which works fine on ng-click. But how do I make it appear automatically when my start page appears? I know I need to write code in $scope.init(). However, I am new to ionic. Can anyone help me? Thanks!
Jyo
  • 3
  • 3
0
votes
0 answers

$ionicpopup onTap does not work

I'm developing a phonegap app. I want to get users comments via $ionicpopup the code is as below: function showToast(message) { if (window.plugins && window.plugins.toast) { window.plugins.toast.showLongCenter(message); …
0
votes
1 answer

How to remember Ionic Range slider position $ionicPopup

I have directive to change font size on page: .directive('textSizeSlider', ['$document', function ($document) { return { restrict: 'E', template: '
A-
KingStakh
  • 303
  • 3
  • 13
0
votes
2 answers

Ionic: How is it possible to change the width of $ionicPopup?

I'm trying to change the width of $ionicPopup; I've tried using the following css code, to import it onto cssClass: my-popup: .my-popup { width: 400; } But that didn't seem to work. I've really got stuck there, and currently unable to…
user6039980
  • 3,108
  • 8
  • 31
  • 57
0
votes
1 answer

Ionic on click confirm popup button open another pop up

In my ionic framework on click of submit button a confirmation popup opens. I want on click of Yes It is! button show another similar popup. How can I target another pop up on click of one popup button. Find Codepen Demo my controller code…
Ganesh Yadav
  • 2,607
  • 2
  • 29
  • 52
0
votes
1 answer

Unknown provider: $ionicPopup

I'm implementing Global Error Handling inside an Ionic application. I want to receive an IonicPopup telling me that an error occurred. For the errorExceptionHandler I created a new config based on an existing solution that holds an alert as Global…
Schuere
  • 1,579
  • 19
  • 33
0
votes
1 answer

Angular - use template as container for multiple templates

Here's a quick question: Is it possible to have a template in which you have multiple templates and call the one you need, when you need it? Let me explain this a bit better: I have a modal that I call this way: $scope.showErrorModal = -> …
Nick
  • 13,493
  • 8
  • 51
  • 98
0
votes
2 answers

Creating a ionicPopup service

I am very new to ionic and not a pro with angular. I am trying to create a service for popups that I can call from a controller. I am using a service because multiple controllers may need to use the popups and I may need different kinds of popups.…
Chris
  • 3,113
  • 5
  • 24
  • 46
0
votes
0 answers

IONIC Popup Dialog: Buttons at Wrong Position If The Template HTML Contains Tag

I would like to make an IONIC popup dialog that consists of popup header, popup body and popup button sections. The content of the popup body is a ion-list. Here is the desired outcome: I achieved the desired outcome by using the template HTML as…
Chris Gao
  • 103
  • 9
0
votes
2 answers

angular ui-select choices doesnt scroll on ion-view and ion-modal-view but scrolls on ion-popup

I have this ui-select on my code. I am building a mobile app with Ionic and AngularJS.
Kingsley Simon
  • 2,090
  • 5
  • 38
  • 84
0
votes
1 answer

disable android back button for modal

I have the following modal inside an ion view:
Jeka
  • 1,600
  • 3
  • 22
  • 36
0
votes
3 answers

ionicPopup doesnt close only hides.

In my code, when I trigger the ionicPopup, upon button tap, it triggers another ionicPopup but it should close the previous ionicPopup. However, in my implementation, while it close the final ionicPopup, the initial ionicPopup doesnt close rather it…
Kingsley Simon
  • 2,090
  • 5
  • 38
  • 84
0
votes
1 answer

ionicPopup refuses to close after firing enter button

SO i have my ionic Popup and upon firing enter button from my laptop keyboard, it resubmits the form from which fired the ionicPopup and refuses to close. why is this so? $ionicPopup.alert({ title: ' Required Field!', template:'Invalid Email,…
Kingsley Simon
  • 2,090
  • 5
  • 38
  • 84
0
votes
1 answer

$ionicPopup are not showing at botton

I am new at ionic framework and angular Js. I am using Confirm style ionic popup, why buttons are not showing in the bottom of the popup. Here is the updated codepen. [http://codepen.io/skpatel/pen/ZGwGOO][1] Please help me, I am having this issue…
sam_k
  • 5,983
  • 14
  • 76
  • 110
0
votes
1 answer

Update specific object on ng-class

I am interested in updating specific object on ng-class as my view is containing many objects out of which I want to apply update on specific object from the loop.
user366584
  • 1,016
  • 1
  • 16
  • 34