新手提问:一个错误,请各位高手给看看!
网页错误详细信息
用户代理: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727)
时间戳: Thu, 30 Jun 2011 10:26:34 UTC
消息: 由于出现错误 c00ce514 而导致此项操作无法完成。
行: 7
字符: 14328
代码: 0
URI: http://127.0.0.1:8080/swbd/ext/adapter/ext/ext-base.js
做了一个将数据库表中的数据导出到excel表的jsp,用的是ext,struts2.hibernate3。开始页面用jsp做的可以正常操作,把页面换成ext就提示这个错误了。各位高手请赐教啊!
------最佳解决方案--------------------这种报错在EXT源码的 都是页面写的有问题
你把页面一段一段注释后排查吧
------其他解决方案--------------------ext方式和不同的jsp方式不一样,这是个难点
------其他解决方案--------------------你确定该引入的文件都引入了吗?
------其他解决方案--------------------没用过ext,帮顶
------其他解决方案--------------------帮你顶了,没有用过
------其他解决方案--------------------不会ext...
------其他解决方案--------------------不会ext...
------其他解决方案--------------------没看明白
------其他解决方案--------------------为什么都没人理我,希望朋友们帮帮我
------其他解决方案--------------------
var grid = new Ext.grid.EditorGridPanel({
renderTo: 'Array Grid',
title:'信息:',
store:store,
cm:cm,
height:858,
autowidth:true,
enableColumnMove: false , // 禁止列拖拽
trackMouseOver: false ,// 禁止鼠标移动特效
enableHdMenu:false,
tbar:[{
pressed:true,
text:'导出Excel表',
handler:function(){
Ext.Ajax.request({
url: 'Export',
method:'post'
})
}
}],
bbar: new Ext.PagingToolbar({
pageSize:1000,
store: store,
displayInfo: true,
displayMsg: '显示第 {0} 条到 {1} 条记录,一共 {2} 条',
emptyMsg: "没有记录"
})
});
store.load();
});
我的页面主要的代码就是这样。我是没发现有什么不对的,请高手看看有什么错?
------其他解决方案--------------------
<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.js"></script>
<script type="text/javascript" src="ext/ext-all_debug.js"></script>
<script type="text/javascript" src="ext/ext-lang-zh_CN.js"></script>
这是我引用的文件。应该是该引入的都引入了吧。。。。。。。。