找回密码
 立即注册

QQ登录

只需一步,快速开始

syl000216

银牌会员

16

主题

35

帖子

3540

积分

银牌会员

积分
3540

活字格认证

syl000216
银牌会员   /  发表于:2014-11-28 11:09  /   查看:3960  /  回复:1
spread单元格设置链接,怎么调用window.open 打开新页面

1 个回复

倒序浏览
iceman
社区贡献组   /  发表于:2014-11-28 17:49:00
沙发
回复 1楼syl000216的帖子

建议您使用 ButtonCellType 来实现这个需求:

  1.             FarPoint.Web.Spread.ButtonCellType btn = new FarPoint.Web.Spread.ButtonCellType();
  2.             btn.ButtonType = FarPoint.Web.Spread.ButtonType.LinkButton;
  3.             btn.OnClientClick = "alert(\'You clicked the button\');";
  4.             FpSpread1.ActiveSheetView.Cells[1, 1].CellType = btn;
复制代码

评分

参与人数 1满意度 +5 收起 理由
syl000216 + 5 斑竹威武

查看全部评分

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