defcon1
7 Jan 2010, 8:55 AM
Hi,
I am using ExtJS v3.1.0 and tried following simple code successfully with IE8 & FF3.5,
but Google Chrome crashes the layout:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<!-- ExtJS -->
<link rel="stylesheet" type="text/css" href="js/extjs310/resources/css/ext-all.css">
<script type="text/javascript" src="js/extjs310/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="js/extjs310/ext-all.js"></script>
<script type="text/javascript">
Ext.onReady(function(){
var wind = new Ext.Window({
plain: true,
bodyStyle: 'padding:0px;',
layout: 'fit',
items: new Ext.Panel({width:200,height:200}),
tbar: new Ext.Toolbar({
items: [
{
text: '123',
handler: function(a,b,c) {
alert ("123");
}
}
]
})
});
wind.show();
});
</script>
</head>
<body>
</body>
</html>
I am using ExtJS v3.1.0 and tried following simple code successfully with IE8 & FF3.5,
but Google Chrome crashes the layout:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<!-- ExtJS -->
<link rel="stylesheet" type="text/css" href="js/extjs310/resources/css/ext-all.css">
<script type="text/javascript" src="js/extjs310/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="js/extjs310/ext-all.js"></script>
<script type="text/javascript">
Ext.onReady(function(){
var wind = new Ext.Window({
plain: true,
bodyStyle: 'padding:0px;',
layout: 'fit',
items: new Ext.Panel({width:200,height:200}),
tbar: new Ext.Toolbar({
items: [
{
text: '123',
handler: function(a,b,c) {
alert ("123");
}
}
]
})
});
wind.show();
});
</script>
</head>
<body>
</body>
</html>