Spread ASP.NET 17
Spread for ASP.NET 17 Product Documentation / Client-Side Scripting Reference / Scripting Members / Events / EditStopped
In This Topic
    EditStopped
    In This Topic

    Occurs when cell editing is complete.

    Syntax

    [Inline HTML]

    <ELEMENT EditStopped = "handler" ...>

    [JavaScript]

    FpSpread1.addEventListener("EditStopped", handler, ...)

    or

    FpSpread1.onEditStopped = handler

    Arguments

    event.spread
    Spread that raises the event
    event.cell
    Cell going out of edit mode

    Return Type

    None

    Remarks

    This event is triggered when the user is done editing a cell, such as when another cell is clicked.

    Example

    This is a sample that contains the event. On the client side, the script that contains the event would look like this:

    JavaScript
    Copy Code
    <script type="text/javascript">
       function stoppedSpreadEdit(event) {
          window.status = "Edit stopped " + event.cell.outerHTML;
       }
    </script>
    
    See Also