共用方式為


如何在Windows Azure Pack 管理入口網站延伸模組中顯示確認

 

適用于:Windows Azure Pack

當使用者必須做出選擇,且必須繼續與管理入口網站互動時,才會使用確認。 通常它們會與刪除作業搭配使用。

注意

確認是整個管理入口網站的強制回應作業,直到使用者做出決策,才會封鎖整個頁面。

顯示刪除確認

  1. 使用下列程式碼來顯示刪除確認要求:

    var deleteConfirmation = new shell.UI.Notifications.Confirmation("Are you sure?");
    // Note you could have multiple options – setActions takes an array
    deleteConfirmation.setActions([shell.UI.Notifications.Buttons.ok(function() {
      performDelete(item);
    })]);
    Shell.UI.Notifications.add(deleteConfirmation);
    

另請參閱

在 Windows Azure Pack Management Portal 擴充功能中執行一般工作