小钻风 发表于 2020-7-29 09:42:21

DateTimeCellType如何显示日历和时间

       FarPoint.Web.Spread.DateTimeCellType 点击单元格如何显示日历和时间?最好有代码例子,萌新求教~

Richard.Ma 发表于 2020-7-29 11:20:55

你好,设置ShowPopupButton 可以显示日期按钮


            DateTimeCellType datetype=new DateTimeCellType() { };
            datetype.ShowPopupButton = true;
            FpSpread1.ActiveSheetView.Cells.CellType= datetype;

小钻风 发表于 2020-7-29 11:43:35

Richard.Ma 发表于 2020-7-29 11:20
你好,设置ShowPopupButton 可以显示日期按钮

大大,没有ShowPopupButton这个属性,只找到了 dateTimeCellType.DateTimeFormat.Calendar

Richard.Ma 发表于 2020-7-29 12:30:26

你用的不是ASP.NET webform版本的控件吗,下面是文档介绍

https://www.grapecity.com/spreadnet/docs/v13/online-asp/FarPoint.Web.Spread~FarPoint.Web.Spread.DateTimeCellType~ShowPopupButton.html?highlight=showpopupbutton%2C

小钻风 发表于 2020-7-29 13:41:05

Richard.Ma 发表于 2020-7-29 12:30
你用的不是ASP.NET webform版本的控件吗,下面是文档介绍

https://www.grapecity.com/spreadnet/docs/v1 ...

FarPoint.Web.Spread 3.0的版本

Richard.Ma 发表于 2020-7-29 15:04:22

这个版本太早了,老版本可能无此按钮,建议升级到当前V13版本。
页: [1]
查看完整版本: DateTimeCellType如何显示日历和时间