telank 发表于 2018-12-10 15:03:47

日期格式化问题

版主

单元格设定日期格式后
DataSource赋值以后 显示没有格式化

FarPoint.Web.Spread.DateTimeCellType dtcell = new FarPoint.Web.Spread.DateTimeCellType();
            dtcell.DateTimeFormat = new System.Globalization.DateTimeFormatInfo();
            dtcell.DateTimeFormat.ShortDatePattern = "MM/dd";
            dtcell.FormatString = "MM/dd";
            dtcell.EditMode.DateTimeFormat = new System.Globalization.DateTimeFormatInfo();
            dtcell.EditMode.FormatString = "MM/dd";
            dtcell.ShowPopupButton = true;
            spdList.ActiveSheetView.Columns.CellType = dtcell;


直接赋值 显示是格式化的,但是DataSource赋值就没有格式化显示


dexteryao 发表于 2018-12-11 11:13:46

DataSource 里日期是什么格式的?如果是string,不会被formta的,需要转为datetime

telank 发表于 2018-12-11 16:27:08

确实是 处理了 谢谢

dexteryao 发表于 2018-12-12 08:53:51

{:4_86:}
页: [1]
查看完整版本: 日期格式化问题