Skip to main content
Version: 4.2.5

Customize Site

Customize Site Appearance

To customize the appearance of the site, modify the attributes of the webClientConfig element in the web.config file as shown below.

Attribute nameDescription
homePageContentUrlThe homepage shown to the user when logged on to Administrator site. This URL is only used for the homepage and not for the companyLogo (which is a local path). Default: http://www.icoresolutions.com
companyLogoThe local path (on the same server where Administrator is installed) to the company logo that will be displayed on top of the page. Default: /Content/images/shared/logo.png
includeStackTraceInFaultsA flag that states if error messages should contain a link to the stack trace to the error. Useful when debugging a page. Default: false
favIconAn URI to the icon displayed in tab headers in web browsers and in shortcuts used in browsers. Default: /Content/images/shared/favicon.ico

Example:

<iCore>
<webClientConfig homePageContentUrl="http://www.icoresolutions.com"
companyLogo="/Content/images/shared/logo.png"
includeStackTraceInFaults="true"
favIcon="/Content/images/shared/favicon.ico"/>
</iCore>

Customize Entity Selection Editors

To customize the appearance of the Entity selection editors, modify the attributes of the <webClientConfig\> element in the web.config file as shown below. If the listed attributes are missing from the web.config file, the default values will be used.

Attribute nameDescriptionDefault (pixels)
dropDownGridFirstColumnSizeThe width of the first column when listing entities. The first column often contains the name of the Entity. Modify this attribute if you often have the need to adjust the column width manually when listing entities.150
dropdownEntitySelectionEditorDefaultHeightThe default height of the drop-down menu when entities are listed in a drop-down editor. Modify this attribute if you often have the need to adjust the height manually.300
dropdownEntitySelectionEditorDefaultWidthThe default width of the drop-down menu when entities are listed in a drop-down editor. Modify this attribute if you often have the need to adjust the width manually.600

Example:

<iCore>
<webClientConfig
dropDownGridFirstColumnSize="240"
dropdownEntitySelectionEditorDefaultHeight="600"
dropdownEntitySelectionEditorDefaultWidth ="600"/>
</iCore>