mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
1.7 KiB
1.7 KiB
Title, Added, Status, Last reviewed
Title | Added | Status | Last reviewed |
---|---|---|---|
Form cloud service | v3.2.0 | Active | 2019-04-12 |
Form cloud service
Implements Process Services form methods
Basic Usage
import { FormCloudService } from '@alfresco/adf-process-services-cloud';
@Component(...)
class MyComponent {
constructor(formCloudService: FormCloudService) {}
}
Class members
Methods
-
getForms(appName:
string
):Promise
<any[]>
- appName:
string
- - Returns
Promise
<any[]>
-
- appName:
-
getIdByFormName(appName:
string
, formName:string
):Promise
<string>
- appName:
string
- - formName:
string
- - Returns
Promise
<string>
-
- appName:
-
submitForm(formId:
any
, appName:any
, taskId:any
, processInstanceId:any
, values:any
):Promise
<any>
- formId:
any
- - appName:
any
- - taskId:
any
- - processInstanceId:
any
- - values:
any
- - Returns
Promise
<any>
-
- formId: