javascript - 在Extjs中提示警告消息框

标签 javascript php mysql extjs

在我的用户界面中,我有一个 EditorGridPanel 和三个按钮,即:“添加”、“保存”和“取消”。目前,每当我想编辑网格中的现有数据并单击保存按钮时,它都会自动更新数据,这就是我的问题。我想要的是添加一个警报消息框,上面写着“您想保存更改吗?”如果是,则继续执行保存功能。如果否,则在更新网格中的数据之前返回其原始形式的数据。

有人可以帮我解决这个问题吗?

这是我的代码:

测试.js

  var grid = new Ext.grid.EditorGridPanel({

                id: 'maingrid',
                store: store,

                cm: cm,


                width: 785.5,
                anchor: '100%',
                height: 700,

                frame: true,
                loadMask: true,
                waitMsg: 'Loading...',
                clicksToEdit: 2,
                tbar: [

                    '->',
                {
                    text: 'Add',
                    iconCls: 'add',  
                    id: 'b_add',
                    disabled: true,                        
                    handler : function(){          
                        var Put = grid.getStore().recordType;
                        var p = new Put({  
                            action_take: 'add',
                            is_active: '',
                            allowBlank: false
                        });
                        Ext.getCmp('b_save').enable();
                        Ext.getCmp('b_cancel').enable();
                        grid.stopEditing();
                        store.insert(0, p);
                        grid.startEditing(0, 1);                        
                        }

                },'-',{
                    text: 'Save',
                    iconCls: 'save',
                    id: 'b_save',
                    disabled: true,
                    handler : function(){
                        var objectStore = Ext.getCmp("maingrid").getStore();
                        var objectModified = objectStore.getModifiedRecords();

                         var customer_id = Ext.getCmp("maingrid").getStore().baseParams['customer_id'];
                         var objectData = new Array();
                         var dont_include;
                         if(objectModified.length > 0)
                         {
                            for(var i = 0; i < objectModified.length; i++)
                            {
                                dont_include = false;                                   


                                    if(objectModified[i].data.id                                            
                                        &&
                                        (
                                        (objectModified[i].data.firstname == undefined || objectModified[i].data.firstname == null|| objectModified[i].data.firstname == '')
                                        ||
                                        (objectModified[i].data.lastname == undefined || objectModified[i].data.lastname == null|| objectModified[i].data.lastname == '')
                                        ||
                                        (objectModified[i].data.email_address == undefined || objectModified[i].data.email_address == null|| objectModified[i].data.email_address == '')
                                        )
                                    )
                                    {
                                        Ext.Msg.show({
                                           title: 'Warning',
                                           msg: "Input value required.",
                                           icon: Ext.Msg.WARNING,
                                           buttons: Ext.Msg.OK
                                        });

                                        return;                                      
                                    }
                                     else//no id, means new record
                                     {
                                        //all fields are not filled-in, just do nothing

                                        if((objectModified[i].data.firstname == undefined || objectModified[i].data.firstname == null|| objectModified[i].data.firstname == '')&&
                                        (objectModified[i].data.lastname == undefined || objectModified[i].data.lastname == null|| objectModified[i].data.lastname == '')&&
                                        (objectModified[i].data.email_address == undefined || objectModified[i].data.email_address == null|| objectModified[i].data.email_address == ''))
                                        {
                                            //boolean flag to determine whether to include this in submission
                                            dont_include = true; 
                                        }
                                        //either one field is not filled-in prompt to fill in all fields


                                        else if((objectModified[i].data.firstname == undefined || objectModified[i].data.firstname == null|| objectModified[i].data.firstname == '')||
                                        (objectModified[i].data.lastname == undefined || objectModified[i].data.lastname == null|| objectModified[i].data.lastname == '')||
                                        (objectModified[i].data.email_address == undefined || objectModified[i].data.email_address == null|| objectModified[i].data.email_address == ''))
                                        {
                                            Ext.Msg.show({
                                               title: 'Warning',
                                               msg: "Input value required.",
                                               icon: Ext.Msg.WARNING,
                                               buttons: Ext.Msg.OK
                                            });

                                            return;
                                        }

                                     }

                                     //the data for submission
                                     if(!dont_include)
                                     {
                                         objectData.push({
                                            firstname: objectModified[i].data.firstname,
                                            lastname: objectModified[i].data.lastname,
                                            email_address: objectModified[i].data.email_address,
                                            id: objectModified[i].data.id, 
                                            customer_id: customer_id

                                         });
                                     }
                            }
                           // console.log(objectData)
                            // return;

                            //check if data to submit is not empty
                            if(objectData.length < 1)//empty
                            {
                                Ext.Msg.show({
                                    title: 'Warning',
                                    msg: "No records to be saved",
                                    icon: Ext.Msg.WARNING,
                                    buttons: Ext.Msg.OK
                                });

                                Ext.getCmp('maingrid').getStore().reload();

                                return;
                            }
                            // return;
                            Ext.Msg.wait('Saving Records...');
                            Ext.Ajax.request({
                                timeout:900000,
                                params: {objdata: Ext.encode(objectData)},
                                url: '/index.php/SaveContent',
                                success: function(resp){ 
                                    var response = Ext.decode(resp.responseText);
                                    Ext.Msg.hide();
                                    if(response.success == true){  
                                        Ext.Msg.show({
                                            title: "Information",
                                            msg: response.msg,
                                            buttons: Ext.Msg.OK,
                                            icon: Ext.Msg.INFO,
                                            fn: function(btn){
                                                Ext.getCmp('maingrid').getStore().reload();
                                                Ext.getCmp('b_save').disable();
                                                Ext.getCmp('b_cancel').disable();

                                            }
                                        });
                                    }else{

                                        Ext.Msg.show({
                                            title: "Warning",
                                            msg: response.msg,
                                            buttons: Ext.Msg.OK,
                                            icon: Ext.Msg.WARNING
                                        });
                                    }
                                },
                                failure: function(resp){  
                                    Ext.Msg.hide();
                                    Ext.Msg.show({
                                        title: "Warning1",
                                        msg: response.msg,
                                        buttons: Ext.Msg.OK,
                                        icon: Ext.Msg.WARNING
                                    });
                                }
                            });


                         }
                         else{
                             Ext.Msg.show({
                                    title: 'Warning',
                                    msg: "No changes made.",
                                    icon: Ext.Msg.WARNING,
                                    buttons: Ext.Msg.OK
                             });

                         }  
                        }
                    },'-',
                     {
                      text: 'Cancel',
                      iconCls: 'cancel',
                      id: 'b_cancel',
                      disabled: true,

                      handler : function(){

                        var store = Ext.getCmp('maingrid').getStore();
                        var modified = store.getModifiedRecords();                      
                        if (modified.length) {
                             Ext.MessageBox.confirm('Cancel', 'There are records not yet saved. Are you sure you want to cancel the changes?', function(btnId) {
                         if (btnId == 'yes') {
                                 store.reload();
                                 Ext.getCmp('b_save').disable();
                                 Ext.getCmp('b_cancel').disable();    
                                 }
                         });
                            }                           

                      }
                   }                       

            ],
            bbar: pager




    });

actions.class.php

   public function executeSaveContent(sfWebRequest $request){
   $save_data = json_decode($request->getParameter("objdata"));
   $count_array = count($save_data);
   $id_insession = $_SESSION['employee_id'];


   if($count_array > 0){
    foreach($save_data as $k => $v){
        $id = strip_tags($v->id);
        $firstname =  preg_replace("/\s+/", " ", $v->firstname);
        $firstname = ltrim(addslashes(strip_tags($firstname)));
        $firstname = rtrim($firstname);
        $lastname =  preg_replace("/\s+/", " ", $v->lastname);
        $lastname = ltrim(addslashes(strip_tags($lastname)));
        $lastname = rtrim($lastname);
        $email_address =  preg_replace("/\s+/", " ", $v->email_address);
        $email_address = ltrim(addslashes(strip_tags($email_address)));
        $email_adsress = rtrim($email_address);
        $customer_id = $v->customer_id;
        $action = ''; //strip_tags($v->action);
        if(empty($id))
        {
            $action='add';
        }
        else {
            $action='edit';
        }

         if(!empty($firstname)||($lastname)||($email_address)){

             $sql_check = "select firstname,lastname,email_address 
                     from 
                         customer_saver
                    ";
            if($action == "edit"){
                 $sql_check .= " where
                       firstname = '$firstname'
                      and 
                      id not in ($id)";
            }
             if($action == "add"){
                  $sql_check .= " where
                       firstname = '$firstname'
                       ";
             }

         }  




        $setpath = _appContract::SchemaChange('contract_arbill');
        $this->conn->execute($setpath);
        $result_check = $this->conn->fetchAll($sql_check);
            foreach($result_check as $v){

                $fetch_firstname = $this->formatString($v['firstname']);
                $fetch_lastname = $this->formatString($v['lastname']);
                $fetch_email_address= $v['email_address'];
            }
        $result_check_count = count($result_check);

        if($action == "edit"){
            if($result_check_count == 0){
                $sql = "update 

                    customer_saver

                    set

                    firstname = '$firstname',
                    lastname = '$lastname',
                    email_address = '$email_address'                       
                    where
                    id = $id";


            }
            else{
                    $resp['success'] = false;
                    $resp['msg'] = "Duplicate entry found. <br>
                                   First name: <b>".$firstname."</b> Last name: <b>".$lastname."</b> Email Address: <b>".$email_address."</b>";      

                    die(json_encode($resp)); 
            }                
        }

        elseif($action == "add"){
            if(empty($id) && $result_check_count == 0){
                $sql = "insert into 

                    customer_saver

                    (firstname, lastname, email_address,customer_id)
                    values
                    ('$firstname', '$lastname', '$email_address', $customer_id)";

            }
            else{
                $resp['success'] = false;
                $resp['msg'] = "Duplicate entry found. <br>
                                First Name: <b>".$firstname."</b> Last Name: <b>".$lastname."</b> Email Address: <b>".$email_address."</b>";      
                die(json_encode($resp)); 
            }
        }
        try{
        $this->conn->execute($setpath);
        $this->conn->execute($sql);
        }catch(Exception $e){
            die($e->getMessage());
        }
    }

        $resp['success'] = true;
        $resp['msg'] = "Successfully saved the record.";      
        die(json_encode($resp));
  }

}

最佳答案

要显示确认对话框,您可以使用Ext.MessageBox.confirm()方法。

然后,如果用户单击按钮,您可以调用store.sync()方法或处理您自己的更改保存。

如果用户点击按钮,您可以调用Ext.data.Store rejectChanges()方法。此方法拒绝所有已修改记录上的未完成更改,并重新插入本地删除的任何记录。

{
    text: 'Save',
    iconCls: 'save',
    id: 'b_save',
    disabled: true,
    handler : function(){
       var store = Ext.getCmp("maingrid").getStore();
       Ext.MessageBox.confirm('Save changes', 'Do you want save changes?', function(btnId) {
           if (btnId == 'yes') {

               // Your current save button handler code               

           } else {
               store.rejectChanges();
           }
       }); 
   }
}

关于javascript - 在Extjs中提示警告消息框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21726659/

相关文章:

javascript - 如何计算按钮以外的元素的点击次数?

php - PHP 帮助下的动态复选框

php - 在 mySQL 中放置图像的路径并在 Dreamweaver 中的 php 页面上显示

mysql - #1411 - INSERT INTO...SELECT 函数 str_to_date 的日期时间值不正确

javascript - typescript 字符串 | string[] 求数组长度

javascript - 对象没有方法推送

php - Twilio 与 Laravel 集成

php - 查询100k记录表,执行时间超时

MySQL 通过创建更多列而不是行来连接表

javascript - 使 Colorbox 一次加载一张图像