Please enable JavaScript to view this site.

Navigation: Advanced topics > Events > Table events > List page

Events.After record processed

Scroll Prev Next More

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

List, Print.

Recommended sample events:

Change cell background color

Change row background color

Disable record editing

See also:

Conditional formatting

Grid Row JavaScript API: row.getFieldValue()

ProcessValues<PageName>

Before record processed

About Grid Row JavaScript API

Printer-friendly/PDF view settings