Skip to content
This repository has been archived by the owner on Jan 16, 2024. It is now read-only.

postInvoke actions

Constantine Dergachev edited this page Feb 17, 2020 · 1 revision

postInvoke actions

When Tesler API responds to some user-initiated action with rowMeta containing data.postActions array, first element of that array is interpreted as some operation, that should be invoked after all appropriate resolvers for original action.

postInvoke format

The only mandatory field for postInvokes is type, which should be one of Core postInvokes types or custom string that can be handled by client application.
Other fields are different for each postInvoke type (see interfaces/operation.ts for details) and

Core postInvokes

Following postInvoke types are supported by Tesler UI Core:

refreshBC

// TODO

downloadFile

// TODO

downloadFileByUrl

// TODO

drillDown

// TODO

openPickList

// TODO

showMessage

// TODO

postDelete

// TODO

Customization

See Custom postInvokes wiki page