Navigate from an ExplicitPanel back to an Administrative Panel

I have an explicit panel loaded from an administrative panel.  Wondering how, if I do some sort of AJAX save on my explicit panel I can go back to the previous panel and reload it.

  • When subscribing to the message (if it is originating from a different panel potentially), in the options of the subscription (3rd parameter), specify:

    { excludeAutoNameSpaces: true }

    By default, subscriptions are scoped to individual panels. This will identify that the subscription is not limited to the current panel. Notice that when you exclude auto name spacing, it is important to unregister the subscription when the panel unloads:

    var subscription = $.telligent.evolution.messaging.subscribe('message_name', function(data) {
    	// do stuff
    }, { excludeAutoNameSpaces: true });
    			
    $.telligent.evolution.administration.on('panel.unloaded', function(){
    	$.telligent.evolution.messaging.unsubscribe(subscription);
    });

  • Verint | Telligent Community
    0 Verint | Telligent Community
    TE-18096: IAdministrationExplicitPanelController.GetUrl does not include explicit identifier has been completed for 13.0, 12.1.5, 14.0