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

    Ends edit mode for the cell being edited.

    Syntax

    [JavaScript]

    FpSpread1.EndEdit();

    Parameters

    None

    Return Type

    None

    Remarks

    This method ends the editing mode. The cell no longer has the editing cursor. This method does not cause a postback to occur.

    Example

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

    JavaScript
    Copy Code
    <script type="text/javascript">
       function OutOfEdit() {
           FpSpread1.EndEdit(); // out of editing mode
       }
    </script>
    
    See Also