Extjs-ync-alert-box

提供:Dev Guides
移動先:案内検索

Ext.js-はいいいえキャンセルボックス

これは、ユーザーがタスクを実行するか、タスクを拒否またはキャンセルするかなど、ユーザーに確認を求める確認ボックスのようなものです。 ユーザーの選択に基づいて、さまざまなメソッドが呼び出されます。

構文

以下は簡単な構文です。

Ext.MessageBox.show ({
   title: 'Details',
   msg: 'Please enter your details:',
   width:300,
   buttons: Ext.MessageBox.YESNOCANCEL
  //this button property for all three options YES, NO, Cancel.
});

以下は、使用法を示す簡単な例です。

<!DOCTYPE html>
<html>
   <head>
      <link href = "https://cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/classic/theme-classic/resources/theme-classic-all.css"
         rel = "stylesheet"/>
      <script type = "text/javascript"
         src = "https://cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/ext-all.js"></script>

      <script type = "text/javascript">
         Ext.onReady(function() {
            Ext.create('Ext.Button', {
               renderTo: Ext.getElementById('msgBox'),
               text: 'Click Me',

               listeners: {
                  click: function() {
                     Ext.MessageBox.show ({
                        title: 'Details',
                        msg: 'Please enter your details:',
                        width:300,
                        buttons: Ext.MessageBox.YESNOCANCEL,
                        multiline: true,
                        fn: callbackFunction
                     });
                     function callbackFunction() {
                        Ext.Msg.alert('status', 'Details entered succesfully');
                     }
                  }
               }
            });
         });
      </script>
   </head>

   <body>
      <p> Click the button for alert box </p>
      <div id = "msgBox" ></div>
   </body>
</html>

上記のプログラムは、次の結果を生成します-