Geoprocessing output popup

1166
0
03-21-2012 01:45 PM
DianeWhited
New Contributor
I have been trying to get the popup function to work in the geoprocessing widget.  The geoprocessing task runs fines and displays an output, but when I click on the output polygon - nothing happens.  I feel like I am missing something simple.

Here is my geoprocessing code.

[HTML]<configuration label="PNW Analysis">
    <description>    Select individual stream pixel and extract
    corresponding data</description>
    <taskurl>http://measures.ntsg.umt.edu/ArcGIS/rest/services/New_PNW/GPServer/NEWPNW</taskurl>
    <inputparams>
        <param name="input"
               required="true"
      geometrytype="point"
               type="featurerecordset"
               visible="true">
        </param>
    </inputparams>
    <outputparams>
      <param name="output"
      geometrytype="polygon"
               label="Output Result"
               required="true"
               type="featurerecordset"
               visible="true"/>
            <popup>
              <title>Discharge</title>
                <medias>
                    <media imagesourceurl="http://measures.ntsg.umt.edu/data/graphs/tq136_b5.png"
                           type="image"/>
              </medias>
          </popup>
      <renderer type="simple">
        <defaultsymbol alpha="0.9"
                       color="0xF87431"
                       size="15"
                       type="simplefill">
          <outline width="0" color="0x000000"/>
        </defaultsymbol>
      </renderer>
    <layerorder>Output,Input</layerorder>
  <labels>
  <submitlabel>Extract</submitlabel>
  </labels>[/HTML]

Thanks in advance.
Tags (2)
0 Kudos
0 Replies