Member Junction
    Preparing search index...

    Service for programmatically opening create agent dialogs and slide-ins.

    This service dynamically creates and manages the dialog/slide-in components, handling their lifecycle and emitting results via observables.

    Usage:

    constructor(private createAgentService: CreateAgentService) {}

    openCreateDialog() {
    this.createAgentService.OpenDialog({ Title: 'Create Agent' })
    .subscribe(result => {
    if (!result.Cancelled && result.Result) {
    console.log('Agent created:', result.Result.Agent);
    }
    });
    }

    openCreateSlideIn() {
    this.createAgentService.OpenSlideIn({
    ParentAgentId: 'abc123',
    ParentAgentName: 'My Agent'
    }).subscribe(result => {
    // Handle result
    });
    }
    Index

    Constructors

    Accessors

    Methods