keep identify results (symbology) active when opening another widget?

2292
4
Jump to solution
02-02-2016 05:42 AM
JasonStanton__GISP
Occasional Contributor

Is it possible to keep identify widget (wab v1.3) results (symbology) active when opening another widget (from the header controller/off-panel widgets)?  For example, I have identified a community and it is highlighted on the application.  I want to open the print widget and print this exact view, but when I do the highlighting goes away.  Any assistance would be greatly appreciated!

0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus

Jason,

  The Grsphics Layer (GL) is hidden in the widgets onClose event to prevent that just comment out the GL hide line in the onClose function.

      onClose: function () {
        this._hideInfoWindow();
        this.drawBox.deactivate();
        //this.graphicsLayer.hide();

        this.infoWinMouseOver.remove();
        this.infoWinMouseOut.remove();
      },

View solution in original post

4 Replies
RobertScheitlin__GISP
MVP Emeritus

Jason,

  The Grsphics Layer (GL) is hidden in the widgets onClose event to prevent that just comment out the GL hide line in the onClose function.

      onClose: function () {
        this._hideInfoWindow();
        this.drawBox.deactivate();
        //this.graphicsLayer.hide();

        this.infoWinMouseOver.remove();
        this.infoWinMouseOut.remove();
      },
JasonStanton__GISP
Occasional Contributor

Robert, I can't thank you enough for your help (on this and throughout the years)!  I really appreciate it!

0 Kudos
LianaSmith
Occasional Contributor II

Hi Robert,

Is it possible to include not only symbology but the identify results as well to the print layout?

Thank you!

0 Kudos
RobertScheitlin__GISP
MVP Emeritus

Liana,

  No the Identify Results can not currently be included in the print layout.

0 Kudos