我在本地运行代码时没有显示日历图标,而在Sencha网站上则显示相同的代码,即日历图标显示。
<script type="text/javascript">
Ext.onReady(function () {
basicFormPanel();
});
function basicFormPanel() {
Ext.create('Ext.form.Panel', {
renderTo: document.body,
title: 'User Form',
height: 350,
width: 300,
bodyPadding: 10,
defaultType: 'textfield',
items: [
{
fieldLabel: 'First Name',
name: 'firstName'
},
{
fieldLabel: 'Last Name',
name: 'lastName'
},
{
xtype: 'datefield',
fieldLabel: 'Date of Birth',
name: 'birthDate'
}
]
});
}
</script>