bodyStyle :'overflow-x:visible;overflow-y:scroll', //隐藏水平滚动条
通过这个方法可以显示或隐藏滚动条
var form = new Ext.form.FormPanel({
frame : true,
labelWidth : 80,
height : 400,
autoScroll : true,
bodyStyle : 'overflow-x:visible; overflow-y:scroll',
items : []
})