SpreadJS Documentation
Getting the Active Cell Index

アクティブセルのインデックスを取得できます。

コードの使用

次のサンプルコードは、アクティブセルの列および行インデックスを取得します。

JavaScript
コードのコピー
$("#button1").click(function () {
    var sheet = $("#ss").data("spread").getActiveSheet();

    alert("Row index of an active cell : " + sheet.getActiveRowIndex() + "\n" +
        "Column index of an active cell: " + sheet.getActiveColumnIndex());
});

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.