ext-3.3.1
В браузерах, отличных от IE8+ тулбар, расположенный в "северной" части вьюпорта не отображается :-(
Что не так ?
<html>
<head>
<title>TEST</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<link rel="stylesheet" type="text/css" href="ext/resources/css/ext-all.css">
<script type="text/javascript" src="ext/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="ext/ext-all-debug.js"></script>
<script type="text/javascript">
Ext.BLANK_IMAGE_URL = 'ext/resources/images/default/s.gif';
Ext.onReady(function(){
var viewport = new Ext.Viewport({
layout: 'border',
renderTo: Ext.getBody(),
items: [{
region: 'north',
xtype: 'toolbar',
items:[{
xtype: 'tbbutton',
text: 'Button'
},{
xtype: 'textfield',
fieldLabel: 'Director',
name: 'director',
width: 180
}]
},{
region: 'center',
xtype: 'panel',
html: 'Center'
},{
region: 'south',
xtype: 'panel',
html: 'South'
}]
});
});
</script>
</head>
<body></body>
</html>