|
Description
Function BeforeMoveNext<PageName> is
executed after record was processed and formatting applied.
Syntax
|
BeforeMoveNext<PageName>(data,row,record,pageObject)
|
Arguments
data - array of fied values of the
record being processed. To access specific field value use
data("FieldName"). Note
that you can only read the data array.
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 - array representing a row on the
page.
record - array representing a table
record on the page.
pageObject - an object representing
the current page. For more information, see Page class.
Applies to pages
List, Print
Recommended predefined actions
and sample events
Send
a simple email
Insert a record into
another table
Check to see if a specific
record exists
Display a message on the
Web page
Redirect to another page
Change cell background
color
Change row background
color
Hide buttons in some
rows of datagrid
|