Spread ASP.NET 6.0 Product Documentation
onEditStopped
Send Feedback
Spread ASP.NET 6.0 Product Documentation > Client-Side Scripting Reference > Scripting Members > Events > onEditStopped

Glossary Item Box

Occurs when cell editing is complete.

Syntax

[Inline HTML]

<ELEMENT onEditStopped = "handler" ...>

[Event Property]

FpSpread1.onEditStopped = handler

[Named Script]

<SCRIPT FOR=FpSpread1 EVENT=onEditStopped>

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

See Also

onEditStart | StartEdit | EndEdit | Scripting Members

© 2002-2012 GrapeCity, Inc. All Rights Reserved.