Version User Scope of changes
Apr 22 2010, 8:45 AM EDT (current) sdrevik 146 words added
Apr 22 2010, 8:36 AM EDT sdrevik

Changes

Key:  Additions   Deletions
Database Connection
In general, when AgileWeb is running on a different server than the SQL Server, the default connection string in web.config (using Integrated Authentication) will not work. The most common solution is to change the SQL database authentication to "mixed mode", which allows you to define a particular username and password for the database. The web.config file can then be modified to use this username / password in the connection string.


Moving The Legend On The Map Page

You can modify the AQIDisplay.css file in 'style' to force a move of the legend box. Look for the #AQILegend
section, and override it in the css with the "!important" designator. Example:

#AQILegend
{
position:absolute;
top: 455px !important;
left: 470px !important;
border: solid 1px #FFFFFF;
background-color: #FFFFFF;
font-family: Verdana, Helvetica;
text-align: center;
font-size: 11px;
z-index: 700; /* filter: Alpha(Opacity=80, FinishOpacity=70, Style=1); */
-moz-opacity: .75;
opacity: .75;
}