找回密码
 立即注册

QQ登录

只需一步,快速开始

fmyuan2000

注册会员

26

主题

58

帖子

190

积分

注册会员

积分
190

活字格认证元老葡萄

fmyuan2000
注册会员   /  发表于:2015-8-7 12:59  /   查看:5480  /  回复:7
使用最新的 SpreadforASP.NETv8.1.zip 在 chrome 上不好使
Chrome 43.0.2357.130 m
spread.png
点击左下角更新之后,就不能点击单元格进行编辑了。
spread1.png
spread3.png
但是IE 11.0.9600.17905 没有问题。

7 个回复

倒序浏览
iceman
社区贡献组   /  发表于:2015-8-7 16:26:00
沙发
回复 1楼fmyuan2000的帖子

该问题在链接中版本已经修复,请下载使用:http://www.gcpowertools.com.cn/downloads/trial/SpreadWeb.msi
回复 使用道具 举报
fmyuan2000
注册会员   /  发表于:2015-8-7 17:57:00
板凳
我还发现在一个问题,ContextMenu 在点击 更新之后消失了,算个bug么?
回复 使用道具 举报
iceman
社区贡献组   /  发表于:2015-8-10 11:49:00
地板
回复 3楼fmyuan2000的帖子

我通过附件demo并没有重现3#的问题,请您参考:
VS2013+Spread V8.1 + C#
18110.zip (24.57 KB, 下载次数: 406)
回复 使用道具 举报
fmyuan2000
注册会员   /  发表于:2015-8-10 16:56:00
5#
我测试了在不打开Excel时没有问题, 如果使用了OpenExcel 方法之后就不好用了。
  1. if (this.IsPostBack) return;
  2.             
  3.             FpSpread1.EnableContextMenu = true;
  4.            
  5.             //Create this viewport menu using markup or the ContextMenus property in the property window

  6.             FarPoint.Web.Spread.ContextMenu viewportMenu = FpSpread1.ContextMenus[FarPoint.Web.Spread.ContextMenuType.Viewport];
  7.             FarPoint.Web.Spread.MenuItem customViewportItem = new FarPoint.Web.Spread.MenuItem("Viewport item 1");
  8.             customViewportItem.ChildItems.Add(new FarPoint.Web.Spread.MenuItem("Child item 1"));
  9.             customViewportItem.ChildItems.Add(new FarPoint.Web.Spread.MenuItem("Child item 2"));
  10.             viewportMenu.Items.Add(customViewportItem);

  11.             //This row header menu is created here (no markup or design properties)
  12.             FarPoint.Web.Spread.ContextMenu rowHeaderContextMenu = new FarPoint.Web.Spread.ContextMenu();
  13.             rowHeaderContextMenu.Type = FarPoint.Web.Spread.ContextMenuType.RowHeader;
  14.             FarPoint.Web.Spread.MenuItem rowHeaderItem = new FarPoint.Web.Spread.MenuItem("RowHeader item 1");
  15.             rowHeaderItem.ChildItems.Add(new FarPoint.Web.Spread.MenuItem("Child item 1"));
  16.             rowHeaderItem.ChildItems.Add(new FarPoint.Web.Spread.MenuItem("Child item 2"));
  17.             rowHeaderContextMenu.Items.Add(rowHeaderItem);
  18.             FpSpread1.ContextMenus.Add(rowHeaderContextMenu);


  19.             FpSpread1.OpenExcel(Server.MapPath("~/test.xlsx"));
复制代码
回复 使用道具 举报
iceman
社区贡献组   /  发表于:2015-8-10 17:59:00
6#
回复 5楼fmyuan2000的帖子

OpenExcel 会重置所有 Spread 设置,请在FpSpread1.OpenExcel(Server.MapPath("~/test.xlsx"));之后执行添加菜单代码。
回复 使用道具 举报
fmyuan2000
注册会员   /  发表于:2015-8-11 10:23:00
7#
好的,多谢!
回复 使用道具 举报
iceman
社区贡献组   /  发表于:2015-8-11 11:49:00
8#
回复 7楼fmyuan2000的帖子

为了给你提供更优质的服务,请对本次服务进行评分。我们会认真对待你提出的宝贵意见,谢谢   

评分

参与人数 1满意度 +5 收起 理由
fmyuan2000 + 5 ok

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部