找回密码
 立即注册

QQ登录

只需一步,快速开始

xj.jxy

注册会员

1

主题

2

帖子

21

积分

注册会员

积分
21
  • 19

    金币

  • 主题

  • 帖子

最新发帖
xj.jxy
注册会员   /  发表于:2016-8-20 01:20  /   查看:4224  /  回复:3
1、想指定格式为 yyyy-MM-dd 类型,以下语句设置了,显示的格式还是 dd/mm/yyyy

            FarPoint.Web.Spread.DateTimeCellType datecell = new FarPoint.Web.Spread.DateTimeCellType();
            datecell.ShowPopupButton = true;
            datecell.DateTimeFormat.ShortDatePattern = "yyyy-MM-dd";
            datecell.FormatString = "d";
            datecell.DateTimeFormat.DateSeparator = "-";
            FSP.Sheets[0].Cells[1,1].CellType = datecell;
2、弹出的选择日历界面,月份和星期是英文,如何能转换为中文。



3 个回复

倒序浏览
dexteryao讲师达人认证 悬赏达人认证 SpreadJS 开发认证
超级版主   /  发表于:2016-8-22 09:44:57
沙发
您好,
1. 请参考下面代码
  1.             FarPoint.Web.Spread.DateTimeCellType dct = new FarPoint.Web.Spread.DateTimeCellType();
  2.             dct.ShowPopupButton = true;
  3.             dct.DateTimeFormat = new System.Globalization.DateTimeFormatInfo();
  4.             dct.FormatString = " yyyy-MM-dd";
  5.             dct.EditMode.DateTimeFormat = new System.Globalization.DateTimeFormatInfo();
  6.             dct.EditMode.FormatString = " yyyy/MM/dd";
  7.             FpSpread1.Sheets[0].Cells[0, 0].CellType = dct;
  8.             FpSpread1.Sheets[0].Cells[0, 0].Value = DateTime.Now;
复制代码


2. 问题已重现,具体原因和结局方案需要调查一下。

评分

参与人数 1满意度 +5 收起 理由
xj.jxy + 5 赞一个!

查看全部评分

回复 使用道具 举报
xj.jxy
注册会员   /  发表于:2016-8-23 00:41:38
板凳
1、非常感谢,已解决。
2、期待您的进一步回复。
回复 使用道具 举报
dexteryao讲师达人认证 悬赏达人认证 SpreadJS 开发认证
超级版主   /  发表于:2016-8-23 09:30:48
地板
ok ,有消息给您答复
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部