我在 .NET 应用程序中有一个 Telerik Spreadsheet 的简单实现,其中一个 Excel 文件从文件系统打开并显示在页面上。
问题是文件中的公式被转换为文本而不是作为公式运行。我不确定是否有其他人以前遇到过这种情况或知道解决方案。
var workbook = Telerik.Web.Spreadsheet.Workbook.Load("path/to/file/on/filesystem.xlsx");
Html.Kendo().Spreadsheet()
.Name("spreadsheet")
.HtmlAttributes(new { style = "width:100%;height:760px" })
.BindTo(workbook)
.Toolbar(t => t.Data(false).Insert(false))
.DefaultCellStyle(d => d.Underline(false))