我使用了 , 的属性,ExtJS
但cls
没有得到结果。bodyCls
componentCls
例如:
Ext.create('Ext.form.Panel', {
renderTo: document.body,
title: 'User Form',
height: 350,
width: 300,
cls: 'form',
bodyPadding: 10,
defaultType: 'textfield',
items: [{
fieldLabel: 'First Name',
name: 'firstName'
}, {
fieldLabel: 'Last Name',
name: 'lastName'
}, {
xtype: 'datefield',
fieldLabel: 'Date of Birth',
name: 'birthDate'
}]
});
现在CSS:
.form {
background-color:orange !important;
}
我想得到背景颜色橙色,但我没有得到我想要的结果。
任何帮助将不胜感激