[]
Moves the active cell to the next row.
[JavaScript]
FpSpread1.MoveToNextRow(wrap);
wrap
Boolean, whether to wrap to the first row when you reach the end of the control
None
This method moves the active cell down to the next row. This will cause the onActiveCellChanging, onActiveCellChanged, and onSelectionChanged events to occur. 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 moveRow() {
FpSpread1.MoveToNextRow(true);
}
</script>