日期:2014-05-16 浏览次数:20337 次
DownloadExcelFiles = function(){
var record = grid1.getSelectionModel().getSelections();//grid1为已定义的GridPanel
if (record.length == 0) {
Ext.MessageBox.alert('系统提示信息', '请选择你要下载的文件!');
}
else
if (record.length > 1) {
Ext.MessageBox.alert('系统提示信息', '一次只能下载一个文件!')
}
else
if (record.length == 1) {
var _filename = ' ';
var _filepath = 'E:\\work\\temp\\';
_filename = _filepath + record[0].get('name');
alert(_filename);
window.open(_filename, '_blank',
'width=1,height=1,toolbar=no,menubar=no,location=no');//报错,提示“拒绝访问”
}
}
window.location.href = obj.path;//这样就可以弹出下载对话框了
跳转到一个普通的jsp或html页面,页面上提供下载地址或下载操作