Spread for ASP.NET 8.0 Product Documentation > Client-Side Scripting Reference > Scripting Members > Events > onEditStopped |
Occurs when cell editing is complete.
[Inline HTML]
<ELEMENT onEditStopped = "handler" ...>
[Event Property]
FpSpread1.onEditStopped = handler
[Named Script]
<SCRIPT FOR=FpSpread1 EVENT=onEditStopped>
None
This event is triggered when the user is done editing a cell, such as when another cell is clicked.
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> |