I am a new Ext 4.02a user attempting to add a combo box to a tab panel. Everything works but the appearance of the arrow. Here is my setup:
Code:
<head>
<link href="css/ext-all.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript">
Ext.BLANK_IMAGE_URL = 'images/s.gif';
</script>
<script type="text/javascript" src="js/details.js"></script>
</head>
And within my combo configuration within the tab panel:
Code:
{
title:'Physical',
defaults: {width: 230},
defaultType: 'textfield',
items: [
{
fieldLabel: 'Blah',
xtype: 'combo',
name: 'blah',
value: 'blah',
store: blahStore,
displayField: 'blah',
queryMode: 'local',
typeAhead: true
},
{
fieldLabel: 'Business',
name: 'business'
},
{
fieldLabel: 'Mobile',
name: 'mobile'
},
{
fieldLabel: 'Fax',
name: 'fax'
}
]
},
I know this is something trivial, but any insight is appreciated.
Thanks.