仅在前端查看Ext表单提交参数

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

 

你可能感兴趣的:(ext,from)