回复 7楼admin的帖子
例子中的代码:
<script type="text/javascript">
function Button1_onclick() {
var cell = FpSpread1.GetCellByRowCol(0, 0);
cell.removeAttribute("FpCellType");
FpSpread1.SetValue(0, 0, "setvalue", true);
cell.setAttribute("FpCellType","readonly");
FpSpread1.UpdatePostbackData();
}
</script>中的FpSpread1.GetCellByRowCol(0, 0);
FpSpread4中没有GetCellByRowCol属性,怎么办? |