Skins
Deployment Feature Availability
Deploying multiple skins to an instance available in on-premise and private instance cloud deployments only. Deploying a single skin to a multi-tenant instance is available by request. However not all instances are compatible. This is not available on CoLo.
Interface Feature Availability
Available in web interface Produce only.
The following table contains a list of items that can be customized via a theme's skin file:
SkinID (Control Type: label) | Description | Visible on |
---|---|---|
PageTitle | Title of browser pages/tabs within SmartIQ | Throughout |
LoginBeforeSkin | Content before username/password section when logging in | Login |
LoginAfterSkin | Content after username/password section when logging in | Login |
FinishBeforeSkin | Text at the top of the page at the completion page of a form | Form Finish |
ExpiredContentSkin | Message for if content within a generated document has expired | Form Finish |
ErrorsOccurredSkin | Message that appears if errors occurred during the generation of a document | Form Finish |
FinishAfterSkin | Text at the bottom of the page at the end of Produce | Form Finish |
HeaderLogoSkin | Logo for Produce | Home, Wizard |
HomePageBottomLeft | Content beneath home interface content. | Home |
WizardHeaderLogoSkin | Logo during Produce | Form Wizard |
WizardHeaderSkin | Header during Produce | Form Wizard |
WizardFooterSkin | Footer during Produce | Form Wizard |
GenerateDoc | Custom text for Submit button | Form Wizard |
PortalDefaultBody | Hide/Disable Produce Home Page | - |
Note:
Editing the .SKIN file may require a forced reset of the site's Application Pool in order to refresh.
An easy way of forcing the application to update the site is to make a small modification to the appsettings.json file, then undo the modification, then save the file. Once this is done, reload the site in the browser.
Sample theme skin file
Skin files control various elements within the Produce User Interface. The skin file below customizes the Page Title and Generate Document Button.
<asp:label runat="server" SkinId="PageTitle" text="MY TITLE"></asp:label> <asp:button runat="server" SkinId="FinishBeforeSkin" text="THIS IS THE FINISH PAGE"></asp:button>
Updated over 2 years ago