回复 1楼tan156的帖子
你好,
可以通过前台的 onEditStopped 事件获取编辑过的单元格行索引,再写入 hiddenfield 中在后台获取。
新增行可以通过后台的 InsertCommand 获取:
- private void FpSpread1InsertCommand(object sender, FarPoint.Web.Spread.SpreadCommandEventArgs e)
- {
- TextBox1.Text = "You inserted a row at index " + e.CommandArgument;
- }
复制代码 |