比較バージョン

キー

  • この行は追加されました。
  • この行は削除されました。
  • 書式設定が変更されました。

...

Namespace

Class name

SkyEditor2

Extender


Extender class interface


 

Event name

Argument / Class

Comment

Method

Constructor

Argument

Apex class for extending page

At initialization before data acquisition

Init()

-

At initialization and after data acquisition

preSave()

-

Called before Save processing

afterSave()

-

Called after Saving process commit

preSearch()

-

Called before Search processing

afterSearch()

-

Called after Search processing

preAdd(SObject obj)

Object that is displayed on the table

It will be called before adding a row to the table

afterAdd(SObject obj)

Object that is displayed on the table

It will be called after adding a row to the table

afterClone(SObject obj)

Object that is displayed on the table

Called after Clone processing

preMultipleSelectionAdd(SObject cloned)Object that is displayed on the tableCalled before adding a row when adding a row with the master retrieval function from the custom lookup screen
afterMultipleSelectionAdd(SObject cloned)Object that is displayed on the tableCalled after adding a row when adding a row with the master retrieval function from the custom lookup screen
additionalExceptionHandler(Errors.SveDmlException ex , SObject[] records)

An error object produced when Database Query is used instead of DML

Arragend in Database.SaveResult or Database.UpsertResult

Retrieve multiple numbere of errors at Save processing if the Variable useDatabaseQuery is set as "true"

variableuseDatabaseQueryClassBoolean

Database Query's execution flag.

  • true: Execute Database Query
  • false: Execute DML
     (Default value: false)

...