回复 1楼luoyefeng的帖子
luoyefeng 你好,
Spread for ASP.NET 支持跨表公式,请使用以下代码测试:
- this.FpSpread1.ClientAutoCalculation = true;
- this.FpSpread1.Sheets.Count = 3;
- this.FpSpread1.Sheets[0].AllowUserFormulas = true;
- FpSpread1.Sheets[0].Cells[0, 0].Formula = "sheet2!A2+sheet2!A1";
复制代码
2.每次点击标签时会回调到后台进行数据资源加载,如果不想刷新页面,可以把 Spread 嵌套在 UpdatePanel 中使用。 |