Extjs 实现form表单批量设置只读跟背景色

Extjs 实现form表单批量设置只读和背景色

FormPanel.getForm().items.eachKey(function(key,item){   

item.el.dom.readOnly=true;                               //设置只读

        item.el.dom.style.background=("#CCCCCC");   //设置背景色

})