PROBLEM

Hyperlinks not enabled in an ArcIMS HTML website

Last Published: April 25, 2020

Description

Hyperlinks are not enabled in an ArcIMS HTML website.

Cause

The hyperlink array is not correct in the ArcIMSparams.js file.

Solution or Workaround



  1. Add the correct hyperlink array in the ArcIMSparams.js file.
  2. Uncomment the following in the ArcIMSparams.js file:

    Code:
    // parameters for setting up hyperlinks in data display
    var hyperLinkLayers = new Array(); // layers to have hyperlink
    var hyperLinkFields = new Array(); // field in those layers to be used for hyperlink
    var hyperLinkPrefix = new Array(); // prefix (if any) to place before field value to make hyperlink url
    var hyperLinkSuffix = new Array(); // suffix (if any) to place after field value to make hyperlink url

    /*
    hyperlinkLayers[0] = "Parcels";
    hyperlinkFields[0] = "QUICKREFID";
    hyperlinkPrefix[0] = "http://www.zephyr.com/Appraisal/PublicAccess/PropertyDetail.aspx?PropertyID=&dbkeyAuth=Appraisal&TaxYear=2005&NodeID=11&PropertyOwnerID=";
    hyperlinkSuffix[0] = "";
    */

    Remove the comments and save the file:

    Code:
    // parameters for setting up hyperlinks in data display
    var hyperLinkLayers = new Array(); // layers to have hyperlink
    var hyperLinkFields = new Array(); // field in those layers to be used for hyperlink
    var hyperLinkPrefix = new Array(); // prefix (if any) to place before field value to make hyperlink url
    var hyperLinkSuffix = new Array(); // suffix (if any) to place after field value to make hyperlink url

    hyperlinkLayers[0] = "Parcels";
    hyperlinkFields[0] = "QUICKREFID";
    hyperlinkPrefix[0] = "http://www.zephyr.com/Appraisal/PublicAccess/PropertyDeatail.aspx?PropertyID=&dbkeyAuth=Appraisal&TaxYear=2005&NodeID=11&PropertyOwnerID=";
    hyperlinkSuffix[0] = "";

Article ID:000007875

Software:
  • Legacy Products

Get help from ArcGIS experts

Contact technical support

Download the Esri Support App

Go to download options

Related Information

Discover more on this topic