5-1-1. Customizable Scope

Following functions are added to pages made with SkyVisualEditor.

No

Action process

Method

1

Show screen(Load)

constructer

First screen showing function
(Before Main Apex class init() process )

2

Show screen(Load)

init()

Last screen showing function
(After Main Apex class init() process )

3

Show screen(Load)

pageAction()

Calls the action attribute defined in the <apex:page> tag

4

Pressing [Save] button


preSave ()

Before saving

5

afterSave()

After saving

6

Pressing [Search] button


preSearch()

Before search

7

afterSearch()

After search

8

Pressing [add ]column in table



preAdd()

Before adding column

9

afterAdd()

After adding column

10Pressing [add ]column in master retrievalpreMultipleSelectionAdd()Before adding column process by master retrieval.
11afterMultipleSelectionAdd()After adding column process by master retrieval.

12

Pressing [Copy column] button

afterClone()

After copying column

13

Pressing Custom button or custom link

You will need to prepare your own functions. The following conditions must be met.

  • The ccess modifier has to be global or public. (private and none are selectable but will give errors during deployment)
  • The return value type must be a [pageReference]