Suche…


Parameter

Parameter Detail
title: '', // String. Der Titel des Popups.
cssClass: '' , // String, Der benutzerdefinierte CSS-Klassenname
subTitle: '' , // String (optional). Der Untertitel des Popups.
template: '' , // String (optional). Die HTML-Vorlage, die im Popup-Body platziert werden soll.
templateUrl: '' , // String (optional). Die URL einer HTML-Vorlage, die im Popup-Body platziert wird
scope: null, // Bereich (optional). Ein Bereich zum Verknüpfen mit dem Popup-Inhalt.

Bemerkungen

Der Ionic Popup-Dienst ermöglicht das programmgesteuerte Erstellen und Anzeigen von Popup-Fenstern, in denen der Benutzer reagieren muss, um fortfahren zu können.

Dialog in Ionic erstellen

 // An alert dialog
 $scope.showAlert = function() {
   var alertPopup = $ionicPopup.alert({
     title: 'Don\'t eat that!',
     template: 'It might taste good'
   });

   alertPopup.then(function(res) {
     console.log('Hello your first example.');
   });
 };
});


Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow