次の方法で共有


Ewa.EwaControl.remove_commitCellEditing(function)

**適用対象:**apps for SharePoint | Excel Services | SharePoint Server 2013

指定したイベント ハンドラー **[commitCellEditing]**イベントの購読を取り消します。

Ewa.EwaControl.remove_commitCellEditing(function);

パラメーター

function

イベント ハンドラーはイベントの購読を解除します。

戻り値

なし。

次の例では、指定したイベント ハンドラー **[commitCellEditing]**イベントの購読を解除する方法を示します。コードの例をExcel Web Access Web パーツでSharePoint Server 2013で作業していることを前提としています。

   
<script type="text/javascript">

var ewa = null;

// Add event handler for onload event.
if (window.attachEvent) {
    window.attachEvent("onload", ewaOnPageLoad);
}
else {
    window.addEventListener("DOMContentLoaded", ewaOnPageLoad, false);
}

function ewaOnPageLoad() {
    if (typeof (Ewa) != "undefined") {
        Ewa.EwaControl.add_applicationReady(ewaApplicationReady);
    }
    else {
        alert("Error - the EWA JS is not loaded.");
    }
    // ...
}

function ewaApplicationReady() {
    // Get a reference to the Excel Services Web Part.
    ewa = Ewa.EwaControl.getInstances().getItem(0);
    // Add an event handler for the 
    // active cell changed event.
    ewa.add_commitCellEditing(ewaCommitCellEditing);

    // ...
} 


function ewaCommitCellEditing(rangeEditArgs) {
    // Handle the commitCellEditing event
} 


/* Given the preceding code, unsubscribe the cellChanged
event handler from the activeCellChanged event. */

function myFunction() {
    // Unubscribe the commitCellEditing event handler.
    ewa.remove_commitCellEditing(ewaCommitCellEditing);

    // ...
}

</script>

関連項目

参照先

Ewa.EwaControl オブジェクト

その他の技術情報

add_commitCellEditing(function)