-
20 May 2010 4:54 PM #1
[B]'null' is null or not an object IE7 / el is null in FireFox in ExtJS[/B]
[B]'null' is null or not an object IE7 / el is null in FireFox in ExtJS[/B]
Hi Guys,
I am new in ExtJS and trying to popup BasicDialog but I am getting " null is null or not an object " error on IE7 on Windows XP
In FireFox I am getting " el is null " error.
Any help will be appreciated.


Thanks
Below is my Code.
<%@ 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>
<link rel="stylesheet" type="text/css" href="../../../../../../js/yui_ext/resources/css/ext-all.css" />
<link rel="stylesheet" type="text/css" href="/js/yui_ext/resources/css/accordion.css">
<SCRIPT LANGUAGE='JavaScript1.2' src='/js/yui_ext/adapter/yui/yui-utilities-1-1.js' type='text/javascript'></SCRIPT>
<SCRIPT LANGUAGE='JavaScript1.2' src='/js/yui_ext/adapter/yui/ext-yui-adapter-1-1.js' type='text/javascript'></SCRIPT>
<SCRIPT LANGUAGE='JavaScript1.2' src='/js/yui_ext/ext-all-debug-1-1.js' type='text/javascript'></SCRIPT>
<script>
</script>
</head>
<body>
<SCRIPT LANGUAGE='JavaScript' defer="defer">
Ext.onReady(function(){
alert("test ");
var dialog = new Ext.BasicDialog("asdfas",{
autoTabs:true,
width:500,
height:300,
shadow:true,
minWidth:300,
minHeight:250,
proxyDrag: true
});
alert("test");
dialog.show();
});
</SCRIPT>
</body>
</html>
Similar Threads
-
'null' is null or not an object IE7 / el is null in FireFox in ExtJS
By Jigesh Shah in forum Ext 3.x: Help & DiscussionReplies: 0Last Post: 19 May 2010, 5:48 PM -
Strange null or null is not an object error
By wrhighfield in forum Ext 2.x: Help & DiscussionReplies: 2Last Post: 3 Mar 2008, 3:13 PM -
IE7 problem ('this.container' is null or not an object)
By lucassus in forum Ext 1.x: Help & DiscussionReplies: 3Last Post: 10 Jul 2007, 2:45 PM -
Null is Null or not an Object Error
By ajsoellner in forum Ext 1.x: Help & DiscussionReplies: 0Last Post: 26 Feb 2007, 4:08 AM


Reply With Quote