form表单

查看Form表单提交的参数:

    buttons : [{  
                        text : '提交',  
                        handler : function() {  
                            if (表单名.getForm().isValid()) {  
                                Ext.Msg.alert('提交的参数是', '将会被提交到服务器的 参数有: <br />'  
                                + 表单名.getForm().getValues(true).replace(/&/g, ', '));  
                            }  
                        }  
                    }]  
原文地址:https://www.cnblogs.com/wangjunwei/p/2856031.html