[]
Ends edit mode for the cell being edited.
[JavaScript]
FpSpread1.EndEdit();
None
None
This method ends the editing mode. The cell no longer has the editing cursor. This method does not cause a postback to occur.
This is a sample that contains the method. On the client side, the script that contains the method would look like this:
<script type="text/javascript">
function OutOfEdit() {
FpSpread1.EndEdit(); // out of editing mode
}
</script>