Skip to content

OnRowChanged - cCJGrid

Called after a row change has occurred

Type: Event

Parameters

Parameter Type Description
iOldRow Integer The previous row number, -1 if none
iNewSelectedRow Integer The new row number, -1 if none

Syntax

Procedure OnRowChanged Integer iOldRow Integer iNewSelectedRow

Description

OnRowChanged is called after a row change has occurred. It is passed the old and new row numbers. The new row number will also be the value of SelectedRow.

This event does nothing and can be used to handle any post row changing needs. If you need a row changing event that occurs before the row change and can be cancelled, use OnRowChanging.

Either the old or new row can be -1, which indicates that the row change was made from or to a non-row.