日期格式化问题
版主单元格设定日期格式后
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赋值就没有格式化显示
DataSource 里日期是什么格式的?如果是string,不会被formta的,需要转为datetime 确实是 处理了 谢谢 {:4_86:}
页:
[1]