找回密码
 立即注册

QQ登录

只需一步,快速开始

hailin
中级会员   /  发表于:2017-6-26 10:40  /   查看:3053  /  回复:4
从服务器端返回数据之后,在页面展示 blob843499755.png 之后,TabStrip Visible 失效,每次需要重新点击,我看denmo的这里是执行importJson(spreadJson)方法,调用了syncSpreadPropertyValues();这个,但是我这里不起作用,求解!

4 个回复

倒序浏览
hailin
中级会员   /  发表于:2017-6-26 10:44:02
沙发
补充一下,本地打开excel,这里是显示正常的,前端请求的方法用的http://blog.gcpowertools.com.cn/ ... n-Server-Excel.aspx, 服务器端返回的是用    :
       HttpContext.Current.Response.Clear();
        HttpContext.Current.Response.Buffer = true;
        HttpContext.Current.Response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";//xlsx
        HttpContext.Current.Response.AddHeader("content-disposition", "attachment;filename=" + HttpUtility.UrlEncode(""));
        HttpContext.Current.Response.OutputStream.Write(buffer, 0, buffer.Length);
        HttpContext.Current.Response.Flush();
        HttpContext.Current.Response.End();
回复 使用道具 举报
hailin
中级会员   /  发表于:2017-6-26 10:47:57
板凳
回复 使用道具 举报
hailin
中级会员   /  发表于:2017-6-26 11:20:04
地板
暂时将返回的json的属性  json.tabStripVisible = true ,解决了, 期待版主的解答!
回复 使用道具 举报
CCKan
银牌会员   /  发表于:2017-6-26 16:06:50
5#
调用 workbook.fromJSON 之后,workbook 的所有设置都会被初始化并设置成 json 中的值。所以要么在 json 中保存这些设置,要么在 fromJSON 完成之后再设置一次。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部