Aller au contenu principal

What is the event fired when a user clicks on the Layer Actions arrow?

Commentaires

1 commentaire

  • Marc Rempel
    For whatever it is worth, I ended up catching the event using the ViewContainerActivatedEvent and then checking the id.  It fires a couple times, but I could do more interrogation to get what I needed.

     

     this.app.eventRegistry.event("ViewContainerActivatedEvent").subscribe(this, (args) => {

     

                    if (args.id === "LayerDataContainerView") {

     

    //code here

     

    }

     

    }
    0

Vous devez vous connecter pour laisser un commentaire.