# EndEdit

Use the EndEdit method to end the edit mode for the cell being edited. Learn its syntax and parameters in documentation.

## Content

Ends edit mode for the cell being edited.

## Syntax

[JavaScript]

```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
<script type="text/javascript">
   function OutOfEdit() {
       FpSpread1.EndEdit(); // out of editing mode
   }
</script>
```

## See Also

[StartEdit](/spreadnet/docs/latest/online-asp/overview/spweb-clientscriptref/clientscript-members/clientscript-allmeths/CSSR-StartEdit)
[EditStart](/spreadnet/docs/latest/online-asp/overview/spweb-clientscriptref/clientscript-members/clientscript-allevents/CSSR-onEditStart)
[EditStopped](/spreadnet/docs/latest/online-asp/overview/spweb-clientscriptref/clientscript-members/clientscript-allevents/CSSR-onEditStopped)
[Scripting Members](/spreadnet/docs/latest/online-asp/overview/spweb-clientscriptref/clientscript-members)