找到解决方案了。
//给锁定单元格赋值
function setLockValue(rowIndex,columnIndex,value) {
var cell = fp1.GetCellByRowCol(rowIndex, columnIndex);
cell.removeAttribute("FpCellType");
fp1.SetValue(rowIndex, columnIndex, value, true);
cell.setAttribute("FpCellType", "readonly");
} |