Difference between revisions of "FluenceXL Web Portal"
m (Antonio.remedios moved page XLCubed Web Portal to FluenceXL Web Portal) |
|||
(6 intermediate revisions by 3 users not shown) | |||
Line 11: | Line 11: | ||
Update the <httpRuntime> tag | Update the <httpRuntime> tag | ||
<pre> | <pre> | ||
− | <httpRuntime ... targetFramework="4. | + | <httpRuntime ... targetFramework="4.8" /> |
</pre> | </pre> | ||
You will also need to be using a [[SQL Repository]]. | You will also need to be using a [[SQL Repository]]. | ||
− | Now when you browse to your | + | Now when you browse to your FluenceXL Web site, you will see the new portal. |
[[File:WebPortal1.png|800px|center]] | [[File:WebPortal1.png|800px|center]] | ||
Line 23: | Line 23: | ||
=Customisation= | =Customisation= | ||
+ | |||
+ | See [[Customising web config]] for more. | ||
+ | |||
+ | ===Color=== | ||
Change the primary color used across the portal with the "PrimaryColor" setting in web.config. The value should be a valid hex color. | Change the primary color used across the portal with the "PrimaryColor" setting in web.config. The value should be a valid hex color. | ||
− | |||
<pre> | <pre> | ||
<add key="PrimaryColor" value="#1a82c5" /> | <add key="PrimaryColor" value="#1a82c5" /> | ||
</pre> | </pre> | ||
+ | |||
+ | ===Logo=== | ||
Change the logo with the "CustomerLogo" setting. The value should be the url to the image. | Change the logo with the "CustomerLogo" setting. The value should be the url to the image. | ||
+ | |||
+ | <pre> | ||
+ | <add key="CustomerLogo" value="https://otherserver.example.org/companylogo.png" /> | ||
+ | </pre> | ||
+ | |||
+ | ===Help url=== | ||
+ | |||
+ | Change the url of the help navigation item with the "CustomHelpUrl" setting. The value should be the url to a web page. The help navigation item can be removed by setting the "DisableHelpButton" setting to true. | ||
+ | |||
+ | <pre> | ||
+ | <add key="CustomHelpUrl" value="https://otherserver.example.org/xlcubedhelp" /> | ||
+ | </pre> | ||
+ | |||
+ | ===Adhoc reporting=== | ||
+ | |||
+ | Adhoc reporting can be disabled by user by setting user permissions on the adhoc.xml - see [[Functional User Permissions for FluenceXL Web Edition]]. Alternatively use the "DisableAdhocGrids" setting in web.config to disable for all users. |
Latest revision as of 14:49, 6 September 2023
Contents
[hide]Enabling the new portal
Available from v10.0.144.
To enable this feature, make the following updates to the web.config file:
Under <appSettings>
<add key="UseNewPortal" value="true" />
Update the <httpRuntime> tag
<httpRuntime ... targetFramework="4.8" />
You will also need to be using a SQL Repository.
Now when you browse to your FluenceXL Web site, you will see the new portal.
Customisation
See Customising web config for more.
Color
Change the primary color used across the portal with the "PrimaryColor" setting in web.config. The value should be a valid hex color.
<add key="PrimaryColor" value="#1a82c5" />
Logo
Change the logo with the "CustomerLogo" setting. The value should be the url to the image.
<add key="CustomerLogo" value="https://otherserver.example.org/companylogo.png" />
Help url
Change the url of the help navigation item with the "CustomHelpUrl" setting. The value should be the url to a web page. The help navigation item can be removed by setting the "DisableHelpButton" setting to true.
<add key="CustomHelpUrl" value="https://otherserver.example.org/xlcubedhelp" />
Adhoc reporting
Adhoc reporting can be disabled by user by setting user permissions on the adhoc.xml - see Functional User Permissions for FluenceXL Web Edition. Alternatively use the "DisableAdhocGrids" setting in web.config to disable for all users.