メタデータの末尾にスキップ
メタデータの先頭に移動

このページの古いバージョンを表示しています。現在のバージョンを表示します。

現在のバージョンとの相違点 ページ履歴を表示

バージョン 1 現在のバージョン »

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

10

Pressing [Copy column] button

afterClone()

After copying column

11

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]
  • ラベルがありません