kendo ui Q3网格导出到excel内置不起作用?

时间:2014-12-22 06:05:40

标签: javascript html5 kendo-ui kendo-grid

大家好我每次使用我的网络应用程序kendo ui grid export to excel内置,它不保存任何记录, 我提到它就像

toolbar: ["excel"],
        excel: {
            allPages: true
    },

//和

toolbar: ["excel"],
        excel: {
            fileName: "Kendo UI Grid Export.xlsx",
            proxyURL: "http://demos.telerik.com/kendo-ui/service/export",
            filterable: true
        },

我对代理网址感到困惑?这意味着什么?

1 个答案:

答案 0 :(得分:3)

您需要此功能才能支持10以下的Internet Explorer版本和Safari 请查看Server Proxy Implementations示例(.NET,PHP,Java)

  

10以下的Internet Explorer版本和Safari无法保存文件和   需要实现服务器代理。设置proxyURL选项   指定服务器代理URL。

在ASP.NET MVC中,函数将是这样的:

[HttpPost]
        public ActionResult ExportButtonSave(string contentType, string base64, string fileName)
        {
            var fileContents = Convert.FromBase64String(base64);

            return File(fileContents, contentType, fileName);
        }

请注意,即使您未将其添加到网格中,只需将导出工作添加到工具栏中,请检查http://dojo.telerik.com/@MohQut/OdEpE