在客户端控制单元格时候lock的问题。可以加锁,但是加锁后不能解锁。代码如下:
Page_Load事件中:
FpSpread1.AllowClientUnlock = True
客户端代码:
function LockCell() {
var spread = document.getElementById("spdKinmu");
var row = document.getElementById("row").value;
var col = document.getElementById("col").value;
spread.Cells(0, 0).SetLocked(true);
}
function UnLockCell() {
var spread = document.getElementById("spdKinmu");
var row = document.getElementById("row").value;
var col = document.getElementById("col").value;
spread.Cells(0, 0).SetLocked(false);
}
|
|