Ng Dialogにhttps://github.com/likeastore/ngDialog#apiを使用して います。
タイトル、メッセージ、表示するボタンを含むダイアログ ボックスを表示したかったのです。
前もって感謝します。
Ng Dialogにhttps://github.com/likeastore/ngDialog#apiを使用して います。
タイトル、メッセージ、表示するボタンを含むダイアログ ボックスを表示したかったのです。
前もって感謝します。
ng-dialog を使用すると、独自に作成したテンプレート (タイトル ボタン、メッセージ付き) などを使用できます。https://github.com/likeastore/ngDialog#template-string
例えば:
ngDialog.openConfirm({template: "<h3>Title<h3> ..."})
または、templateCache を使用してコードをクリーンにすることもできます: https://docs.angularjs.org/api/ng/service/ $templateCache
$templateCache.put('my-template.html', "html");
ngDialog.openConfirm({template: 'my-template.html'})