# EditStopped

Learn the syntax and arguments for the EditStopped event available in Spread for ASP.NET.

## Content

Occurs when cell editing is complete.

## Syntax

[Inline HTML]

```html
<ELEMENT EditStopped = "handler" ...>
```

[JavaScript]

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

or

```javascript
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
<script type="text/javascript">
   function stoppedSpreadEdit(event) {
      window.status = "Edit stopped " + event.cell.outerHTML;
   }
</script>
```

## See Also

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