0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

SharePoint Online でアイテム登録時にダイアログを表示する(クラシック UI)

Posted at

SharePoint でアイテムを登録する時、確認のためのダイアログを表示するようにします

環境

  • サーバー環境:SharePoint Online
  • 開発・検証環境:Windows Pro 10, Chrome

実装

  1. 登録画面(または、編集画面)にて、[右上の歯車マーク] → [ページの編集] を選択する

  2. 外枠の内側をクリックし、[パーツ] → [Webパーツ] を選択する

  3. [メディア及びコンテンツ] → [スクリプトエディター] を選択し、[追加] ボタンを押下する

  4. スクリプトエディターの [スニペットを編集] を押下する

  5. PreSaveAction 関数を作成し、その中に window.confirm を書いて、[挿入] ボタンを押下する

<script type="text/javascript">
function PreSaveAction ()
{
    if (window.confirm('登録してよろしいですか?')) {
        return true;
    }
    return false;
}
</script>
  1. 左上の [編集の終了] から [編集の終了] を選択する

動作確認

上記で、設定は完了になり、登録画面で [保存] ボタンを押下すると、下図のような確認ダイアログが表示されるようになります

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?