Description
The BeforeMoveNext<PageName> event is executed after a record was processed and the formatting applied.
Syntax
BeforeMoveNext<PageName>($data,$row,$record,$pageObject)
Arguments
$data
an array of field values of the record being processed. To access a specific field value, use $data["FieldName"].
Note: You can read the $data array and also write to it changing the values before showing them on the page.
Note: Field names are case-sensitive. If the field name is PlayerId, you should use $data["PlayerId"]. Note that $data["playerid"] or $data["PlayerID"] will not work.
$row
an array representing a row on the page.
$record
an array representing a table record on the page.
$pageObject
an object representing the current page. For more information, see RunnerPage class.
Applies to pages
Recommended sample events:
See also:
•Grid Row JavaScript API: row.getFieldValue()
•About Grid Row JavaScript API
•Printer-friendly/PDF view settings