yuuvis® RAD Q&A

0 votes
by (1.8k points)

Hello,

is it possible to build nested cutom actions in a custom client?
It should work in a similar way as in the 'Download document file' action in the standard client:

1 Answer

+1 vote
by (1.6k points)
selected by
 
Best answer

Hi Mathias,

your class has to implement ListAction: export class MySampleClass extends DmsObjectTarget implements ListAction {

Then declare a variable: subActionComponents: any[];

Now you can add any components you want nested in your action to subActionComponents in your constructor: this.subActionComponents = [MyComponent1, Mycomponent2, ...]

And that's it.

by (1.8k points)
Hi Kolja

Thank you for the explanation. Worked like a charm.

Regards, Mathias

Related questions

0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
0 votes
2 answers
...