Ext.js - Confirm Box



This message box asks for user confirmation and different methods called on different options the user selects as yes or no.

Syntax

Following is a simple syntax for confirm box.

Ext.MessageBox.confirm('Confirm', Msg, optional callbackFunction());

Example

Following is a simple example showing the usage.

<!DOCTYPE html>
<html>
   <head>
      <link href="/?originalUrl=https%3A%2F%2Fcdnjs.cloudflare.com%2Fajax%2Flibs%2Fextjs%2F6.0.0%2Fclassic%2Ftheme-classic%2Fresources%2Ftheme-classic-all.css" 
         rel = "stylesheet" />
      <script type = "text/javascript" 
         src="/?originalUrl=https%3A%2F%2Fcdnjs.cloudflare.com%2Fajax%2Flibs%2Fextjs%2F6.0.0%2Fext-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.confirm(
                        'Confirm', 'Are you sure you want to do this ?', callbackFunction);
                     function callbackFunction(btn) {
                        if(btn == 'yes') {
                           Ext.Msg.alert ('Button Click', 'You clicked the Yes button');
                        } else {
                           Ext.Msg.alert ('Button Click', 'You clicked the No button');
                        }
                     };
                  }
               }
            });
         });
      </script>
   </head>
   
   <body>
      <p> Click the button for alert box </p>
      <div id = "msgBox" ></div>
   </body>
</html>

The above program will produce the following result −

extjs_components.htm
Advertisements