Contextual data that's been shared by the page.
Members
#
record
get current record information stored in the server
objectExamples
$Page.record;
{
First_Name: "John",
Full_Name: "John zylker",
Last_Name: "zylker",
...
}
#
parent_record_id
Get the parent record ID while cloning.
stringExamples
$Page.parent_record_id;
1776121000000694009
#
navigation_data
Get custom navigation data passed from ZDK.Client.navigateTo method
ObjectExamples
ZDK.Client.navigateTo('record_list', { module: 'Leads', custom_view_id: '111111000000046541', custom_data: [{ key: "value"}] }, '_self');
$Page.navigation_data;
{
key: "value",
...
}
#
name
Get the current page name
stringExamples
$Page.name;
'record_detail' | 'record_create' | 'record_clone' | 'record_edit' | 'record_list' | undefined