jd6061 发表于 2015-7-17 18:16:00

spread的HyperLinkCellType控件,使用的时候,显示效果不对


希望能给看看是哪个东西没设置好,谢谢了

jd6061 发表于 2015-7-17 18:18:00

我希望显示的效果是,光标没放在上面的时候,显示"001",且"001"的颜色是蓝色,光标点击的时候,颜色不变化,会跳转到指定链接的地方。

iceman 发表于 2015-7-20 14:20:00

回复 2楼jd6061的帖子

设置方法如下:
前台 CSS 代码:

    <style>
      .CssStyle1 a:link {color:white}
      .CssStyle1 a:hover {color:blue}
      .CssStyle1 a:visited {color:blue;}      
    </style>


后台代码:
      protected void Page_Load(object sender, EventArgs e)
      {
            if (IsPostBack)
            {
                return;
            }

            FarPoint.Web.Spread.HyperLinkCellType hlcell = new FarPoint.Web.Spread.HyperLinkCellType();
            hlcell.NavigateUrl = "http://www.fpoint.com";
            hlcell.Target = "self";
            hlcell.CssClass = "CssStyle1";
            FpSpread1.ActiveSheetView.Cells.CellType = hlcell;
            FpSpread1.ActiveSheetView.Columns.Width = 150;

      }

jd6061 发表于 2015-7-22 10:32:00

问题解决了, 太牛叉了,,佩服啊。

iceman 发表于 2015-7-22 13:41:00

回复 4楼jd6061的帖子

不客气,感谢反馈问题结果。

只是使用熟练了而已:itwn:
页: [1]
查看完整版本: spread的HyperLinkCellType控件,使用的时候,显示效果不对