Type parameters
Hierarchy
-
ItemRef<BaseApplicationItem<Data, Params>>
- BaseApplicationItemRef
Properties
Readonly code
App code of the URL’s target (the app’s code).
Readonly id
ID of the URL’s target.
Readonly namespace
Namespace of the URL target (the code of the workspace that the app belongs to).
Methods
delete
-
The method allows you to delete an app item.
await Context.data.app.delete();
Returns Promise<void>
docflow
-
This method returns an object to work with document management operations.
const item = await Context.data.n1; const approvalLists = await item.docflow().getApprovalLists();
Returns DocflowApplicationItemRef
fetch
-
Request complete data of a reference object.
Returns Promise<BaseApplicationItem<Data, Params>>
getFolder
-
The method returns the folder from the folder tree that an item is in.
const item = await Context.data.n1; const folder = await item. getFolder();
Returns Promise<TFolder | undefined>
getRegistrations
-
Deprecated. Get a list of registrations of an app item.
const item = Context.data.d1! await item.getRegistrations();
Returns Promise<ApplicationItemRegistration[]>
getSettings
-
The method returns an app’s settings.
const app = Context.data.dokument; if (app === undefined) { return; } const settings = await app.getSettings();
Returns Promise<TSettings>
manualRegister
-
Deprecated. Manual registration of an app item (if manual registration is enabled in the folder’s settings).
Parameters
-
nameReg: string
-
nomenclatureId: string
Returns Promise<boolean>
-
register
-
Method is deprecated. Automatic app item registration.
Parameters
-
nomenclatureId: string
Returns Promise<boolean>
-
restore
-
The method allows you to restore a deleted app item.
await Context.data.app.restore();
Returns Promise<void>
sendMessage
-
The method allows sending messages to an app item’s activity stream.
Parameters
-
title: string
Message subject.
-
message: string
Message body.
await Context.data.request.sendMessage('The work on your request has been completed', `Solution: ${Context.data.result}`)
Returns Promise<void>
-
setFolder
-
The allows you to change the app item’s folder in the Folder hierarchy.
Parameters
-
id: string
Folder ID.
const item = await Context.data.n1; await item. setFolder('00000-00000-00000-00000');
Returns Promise<void>
-
Base reference object for an app item
Contains a set of fields and methods common to reference objects of any app item. Reference objects are generally used in App type properties to avoid loading all related data at once.