wp_pandy 你好,可以在前台取得该 textbox 对象,例如在后台设置:
- FarPoint.Web.Spread.TextCellType textType = new FarPoint.Web.Spread.TextCellType();
- textType.ShowEditor = true;
- this.FpSpread1.ActiveSheetView.Columns[0].CellType = textType;
- this.FpSpread1.ActiveSheetView.Cells[0, 0].Text = "test";
复制代码 则在前台取得 Cell[0,0] 的方法为:- var textbox = document.getElementById("FpSpread1_0, 0");
复制代码 |