SlideShare a Scribd company logo
1 of 21
Available in Release 11.0.25
1/21/2020
Viewing and Implementing CHP
Templates in Employee Preview
Copyright © 2018. Infor. All Rights Reserved. (2)
Table of Contents
• Overview
• Template Screenshots
• Icon Themes
• Viewing Templates without using CHP
• Implementing a CHP Template
• Common Customizations
– Customizing Banner Image and Text
– Banner Carousel
– Quick Links - Overview
– Quick Links - Internal Links
– Quick Links - External Links
– Quick Links - Icons
Copyright © 2018. Infor. All Rights Reserved. (3)
Overview
• The landing pages for the various GHR roles (Employee, Manager, etc.) are fully
customizable using HTML and CSS
– See Configuring and Deploying Customized Homepages for details
• With the introduction of Employee Preview, there are now six additional home page
templates that can be used as starting points to customize the Employee experience
• The Employee Preview role will have a one of these new templates as its default landing
page
• Additionally, there are six new sets of icons that can be used on the custom home pages
– Each of the six new templates uses a different icon theme
Copyright © 2018. Infor. All Rights Reserved. (4)
Old Theme (EmployeeLiteWelcomeOld.html)
Copyright © 2018. Infor. All Rights Reserved. (5)
EmployeePreviewShortBanner.html
IconTheme: default
EmployeePreviewTallBanner.html
IconTheme: darkred
Copyright © 2018. Infor. All Rights Reserved. (6)
EmployeePreviewGradient.html
IconTheme: lightred
EmployeePreviewSplitBanner.html
IconTheme: orange
Copyright © 2018. Infor. All Rights Reserved. (7)
EmployeeMonochrome.html
IconTheme: blue
EmployeePreviewFullBackground.html
IconTheme: gray
Copyright © 2018. Infor. All Rights Reserved. (8)
Icon Themes
• Each of the six templates features a different icon theme
– Default, darkred, lightred, orange, blue, and gray
• While editing the HTML of the template, you can change the theme by modifying this
line of code, found within the <script> tag in the <head> section:
– hcm.util.loadIcons(“default"); // Loads icons. Options: default, darkre
d, lightred, blue, orange, gray
• To see all available icons in each of the six themes, see HomePagesImages.zip which
can be found here
– This .zip contains all 34 icons in .svg and .png format, as well as the images used in the template
banners
– Note that the HomePagesImages.zip file is only to see the available options, you do not need to
add the icon images to your CHP in order to use them
Pictured: icon-acquire-talent
Copyright © 2018. Infor. All Rights Reserved. (9)
Viewing Templates without using a CHP
• To simply view the templates without customizing them, all
you need to do is configure the EmployeeSelfServiceLite*
web application. To do so:
1. Log in as an administrator to the HCM Rich Client
2. Navigate to Start > Configure > Application
3. Check to see if EmployeeSelfServiceLite is under the Configured
Web Applications drop down
• If it is, click it; If it isn’t, create a new configuration
4. Click the pencil icon and edit the following line, replacing
“EmployeeLiteWelcome.html” with the desired template:
• custom home page is EmployeeLiteWelcome.html
* Note: This will not work in EmployeeSelfService. If you are interested in
customizing the template, go to the next slide, Implementing a CHP Template
Template File Names (see visual
examples in the previous slides)
• EmployeePreviewShortBanner.html
• EmployeePreviewTallBanner.html
• EmployeePreviewGradient.html
• EmployeePreviewSplitBanner.html
• EmployeePreviewMonochrome.html
• EmployeePreviewFullBackground.html
• EmployeeLiteWelcomeOld.html
Copyright © 2018. Infor. All Rights Reserved. (10)
Implementing a CHP Template
1. Locate the HomePages.zip file and
extract it to the desktop
1. Navigate to the Homepage Zip Files page in Infor
Support Portal
2. Click the link “Configurable Home Pages” and select
the Customer Update release that you wish to target
3. Click “Attachments”, then click the download icon on
the far-left column
4. Optionally, repeat steps 2 and 3 for “Configurable
Home Page Image Files”. These images are only
needed for reference to more easily see how the
available SVG icons look
Copyright © 2018. Infor. All Rights Reserved. (11)
Implementing a CHP Template – Continued
2. Open the template of your choice in a text editor and make any desired changes
– Start with something simple to make sure it works, such as changing the text in the banner (shown below)
– Important: be sure that the EmployeeSelfServiceLite webapp is pointing to your chosen template
• Default is “custom home page is EmployeeLiteWelcome.html”(see slide “Viewing Templates without using a CHP”)
3. Re-zip the contents of the HomePages folder
– Make sure you select the contents of the folder, not the folder itself
Copyright © 2018. Infor. All Rights Reserved. (12)
Implementing a CHP Template – Continued
4. Upload the CHP (these steps can also be found on the Configuring and Deploying
Customized Homepages guide)
1. Sign in as an Administrator and navigate to Set Up > Configurable Home Pages
2. Click “Add” to create a new record
3. Fill out the fields
• Set the Effective Date, likely to the current date
• Name the CHP – this will be used in the URL parameter
• Optionally, provide a more descriptive name for the CHP
• Upload the ZIP file
• Click Save
4. If you’re using Ming.le, you must also enable the CHP for a specific application
1. Click the User Menu icon, then click Admin Settings
2. Double click the application you would like to use the CHP, then switch to the Custom Parameters tab
3. Set the Value for CHP to the name of the CHP
5. Switch to the Employee Preview role and ensure that your changes have been applied
4. You may need to sign out and back in to see have the changes applied
Copyright © 2018. Infor. All Rights Reserved. (13)
Common Template Customizations
• Once you’ve followed the previous steps, you
can now begin further customizing the template
• Common changes include:
– Changing banner text and images
– Enabling the banner carousel
– Changing Quick Links
• Link Destination (Internal & External)
• Using custom icons
• For the following slides, we will be using
EmployeePreviewSplitBanner as an example
Copyright © 2018. Infor. All Rights Reserved. (14)
Customizing the Banner Image and Text
1. To change the banner image, you must first add the image to your ZIP in the images
folder. For this example, I’ve added “blue-banner.jpg”
– As per the comment found in the source code, the second url(…) is not necessary once the file is in a
CHP, so it can just be removed
2. To change the banner text, simply edit the text found in the bannerHeader and
bannerMessage elements
Here is how the updated HTML looks:
Copyright © 2018. Infor. All Rights Reserved. (15)
Customizing the Banner Image and Text
Before After
Copyright © 2018. Infor. All Rights Reserved. (16)
Banner Carousel
• All of the new templates have the
functionality to cycle through a series
of banners, each with separate
images, text, and links.
• Two of the templates are set up to
demonstrate this:
– EmployeePreviewMonochrome.html
and
EmployeePreviewFullBackground.
html
• Instructions on how to implement this
feature for any of the templates are
contained inside the template HTML
files as inline comments
Copyright © 2018. Infor. All Rights Reserved. (17)
Quick Links – Overview
• The Quick Links can be found in the content element, and look like this:
• Changes made to a cell will occur in three places:
1. Link Destination: the cell encapsulated an <a> tag, which defines a hyperlink
2. Icon: the icon displayed is currently one of our provided SVG icons, which are further described
in the Icon Themes slide
3. Text: the text that is displayed on each cell, comprised of a caption and captionText
Copyright © 2018. Infor. All Rights Reserved. (18)
Quick Links – Internal Links
• Use the hcm.util.navigateTo() function to go directly to menu items
• For example, the below cell will look for XiEmployeeMenu.menu and
bring the user to the item TimeOff
– This includes menu items that lead to action forms, so it is possible to have a
quick link trigger an action
• The easiest way to view the various menus is to configure them as
an administrator via Rich Client or the Configuration Console role in
the web client
Copyright © 2018. Infor. All Rights Reserved. (19)
Quick Links – External Links
• External links can be handled in two different ways:
– External links can also use the hcm.util.navigateTo function to go to a specified link:
onclick="hcm.util.navigateTo('https://www.infor.com’)”
• This will open the link in a new tab or window depending on the user’s browser settings
– Like any <a> tag, you can use the href attribute to specify the destination. However, since the Home
Page is hosted in an iFrame, you must specify the target attribute to be either “_blank” or “_parent”
• “_blank” will open in a new tab or window, “_parent” will open in the same window
Copyright © 2018. Infor. All Rights Reserved. (20)
Quick Links – Icons
• While we suggest you use our provided icons as described on the Icon Themes slide, it is possible
to use any image as an icon
– Remember that to reference an image it must be in the HomePages/images folder
• To use an image, simply remove the <svg> element (commented out in the example below) and
add an <img> element
• These images will automatically pick up CSS styling, so the only need to specify the src attribute
• We suggest using a square image that is at least 100x100 pixels in size, and that it has adequate
white space around it so that nothing is cut off when a circle is placed around it
Global HR & New Employee Experience - Landing Pages

More Related Content

Similar to Global HR & New Employee Experience - Landing Pages

Notify Features Overview Presentation
Notify Features Overview PresentationNotify Features Overview Presentation
Notify Features Overview Presentation
Yulia Drygybka
 
Famous Freddy Mobile Platform Manual
Famous Freddy Mobile Platform ManualFamous Freddy Mobile Platform Manual
Famous Freddy Mobile Platform Manual
famousfreddy
 

Similar to Global HR & New Employee Experience - Landing Pages (20)

Notify Features Overview Presentation
Notify Features Overview PresentationNotify Features Overview Presentation
Notify Features Overview Presentation
 
Content management system
Content management systemContent management system
Content management system
 
Create content template
Create content templateCreate content template
Create content template
 
Advanced SharePoint 2013 Site Administration
Advanced SharePoint 2013 Site AdministrationAdvanced SharePoint 2013 Site Administration
Advanced SharePoint 2013 Site Administration
 
Share point 2013 Building Websites
Share point 2013 Building WebsitesShare point 2013 Building Websites
Share point 2013 Building Websites
 
Theme guide
Theme guideTheme guide
Theme guide
 
Adobe Experience Manager Core Components
Adobe Experience Manager Core ComponentsAdobe Experience Manager Core Components
Adobe Experience Manager Core Components
 
Web Components
Web ComponentsWeb Components
Web Components
 
Advanced angular
Advanced angularAdvanced angular
Advanced angular
 
XPages101 - Building an XPages app - Lotusphere 2011
XPages101 - Building an XPages app - Lotusphere 2011XPages101 - Building an XPages app - Lotusphere 2011
XPages101 - Building an XPages app - Lotusphere 2011
 
Famous Freddy Mobile Platform Manual
Famous Freddy Mobile Platform ManualFamous Freddy Mobile Platform Manual
Famous Freddy Mobile Platform Manual
 
Custom Header
Custom HeaderCustom Header
Custom Header
 
Joomla! Day UK 2009 Basic Templates
Joomla! Day UK 2009 Basic TemplatesJoomla! Day UK 2009 Basic Templates
Joomla! Day UK 2009 Basic Templates
 
Joomla Day UK 2009 Basic Templates
Joomla Day UK 2009 Basic TemplatesJoomla Day UK 2009 Basic Templates
Joomla Day UK 2009 Basic Templates
 
Ng Sydney Dynamic Templates Talk - 18 April 2018
Ng Sydney Dynamic Templates Talk - 18 April 2018Ng Sydney Dynamic Templates Talk - 18 April 2018
Ng Sydney Dynamic Templates Talk - 18 April 2018
 
Modernising AEM Sites Codebase (AEM Meetup 2019)
Modernising AEM Sites Codebase  (AEM Meetup 2019)Modernising AEM Sites Codebase  (AEM Meetup 2019)
Modernising AEM Sites Codebase (AEM Meetup 2019)
 
Introduction to-concrete-5
Introduction to-concrete-5Introduction to-concrete-5
Introduction to-concrete-5
 
Introduction to-concrete-5
Introduction to-concrete-5Introduction to-concrete-5
Introduction to-concrete-5
 
Net4’s EasySite Builder Step By Step Guide to Create Business Website
Net4’s EasySite Builder Step By Step Guide to Create Business WebsiteNet4’s EasySite Builder Step By Step Guide to Create Business Website
Net4’s EasySite Builder Step By Step Guide to Create Business Website
 
Net4’s EasySite Builder Step by Step Guide
Net4’s EasySite Builder Step by Step GuideNet4’s EasySite Builder Step by Step Guide
Net4’s EasySite Builder Step by Step Guide
 

Recently uploaded

CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
VictorSzoltysek
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
shinachiaurasa2
 

Recently uploaded (20)

%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdf
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
 
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
 
BUS PASS MANGEMENT SYSTEM USING PHP.pptx
BUS PASS MANGEMENT SYSTEM USING PHP.pptxBUS PASS MANGEMENT SYSTEM USING PHP.pptx
BUS PASS MANGEMENT SYSTEM USING PHP.pptx
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionIntroducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
 
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfThe Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 

Global HR & New Employee Experience - Landing Pages

  • 1. Available in Release 11.0.25 1/21/2020 Viewing and Implementing CHP Templates in Employee Preview
  • 2. Copyright © 2018. Infor. All Rights Reserved. (2) Table of Contents • Overview • Template Screenshots • Icon Themes • Viewing Templates without using CHP • Implementing a CHP Template • Common Customizations – Customizing Banner Image and Text – Banner Carousel – Quick Links - Overview – Quick Links - Internal Links – Quick Links - External Links – Quick Links - Icons
  • 3. Copyright © 2018. Infor. All Rights Reserved. (3) Overview • The landing pages for the various GHR roles (Employee, Manager, etc.) are fully customizable using HTML and CSS – See Configuring and Deploying Customized Homepages for details • With the introduction of Employee Preview, there are now six additional home page templates that can be used as starting points to customize the Employee experience • The Employee Preview role will have a one of these new templates as its default landing page • Additionally, there are six new sets of icons that can be used on the custom home pages – Each of the six new templates uses a different icon theme
  • 4. Copyright © 2018. Infor. All Rights Reserved. (4) Old Theme (EmployeeLiteWelcomeOld.html)
  • 5. Copyright © 2018. Infor. All Rights Reserved. (5) EmployeePreviewShortBanner.html IconTheme: default EmployeePreviewTallBanner.html IconTheme: darkred
  • 6. Copyright © 2018. Infor. All Rights Reserved. (6) EmployeePreviewGradient.html IconTheme: lightred EmployeePreviewSplitBanner.html IconTheme: orange
  • 7. Copyright © 2018. Infor. All Rights Reserved. (7) EmployeeMonochrome.html IconTheme: blue EmployeePreviewFullBackground.html IconTheme: gray
  • 8. Copyright © 2018. Infor. All Rights Reserved. (8) Icon Themes • Each of the six templates features a different icon theme – Default, darkred, lightred, orange, blue, and gray • While editing the HTML of the template, you can change the theme by modifying this line of code, found within the <script> tag in the <head> section: – hcm.util.loadIcons(“default"); // Loads icons. Options: default, darkre d, lightred, blue, orange, gray • To see all available icons in each of the six themes, see HomePagesImages.zip which can be found here – This .zip contains all 34 icons in .svg and .png format, as well as the images used in the template banners – Note that the HomePagesImages.zip file is only to see the available options, you do not need to add the icon images to your CHP in order to use them Pictured: icon-acquire-talent
  • 9. Copyright © 2018. Infor. All Rights Reserved. (9) Viewing Templates without using a CHP • To simply view the templates without customizing them, all you need to do is configure the EmployeeSelfServiceLite* web application. To do so: 1. Log in as an administrator to the HCM Rich Client 2. Navigate to Start > Configure > Application 3. Check to see if EmployeeSelfServiceLite is under the Configured Web Applications drop down • If it is, click it; If it isn’t, create a new configuration 4. Click the pencil icon and edit the following line, replacing “EmployeeLiteWelcome.html” with the desired template: • custom home page is EmployeeLiteWelcome.html * Note: This will not work in EmployeeSelfService. If you are interested in customizing the template, go to the next slide, Implementing a CHP Template Template File Names (see visual examples in the previous slides) • EmployeePreviewShortBanner.html • EmployeePreviewTallBanner.html • EmployeePreviewGradient.html • EmployeePreviewSplitBanner.html • EmployeePreviewMonochrome.html • EmployeePreviewFullBackground.html • EmployeeLiteWelcomeOld.html
  • 10. Copyright © 2018. Infor. All Rights Reserved. (10) Implementing a CHP Template 1. Locate the HomePages.zip file and extract it to the desktop 1. Navigate to the Homepage Zip Files page in Infor Support Portal 2. Click the link “Configurable Home Pages” and select the Customer Update release that you wish to target 3. Click “Attachments”, then click the download icon on the far-left column 4. Optionally, repeat steps 2 and 3 for “Configurable Home Page Image Files”. These images are only needed for reference to more easily see how the available SVG icons look
  • 11. Copyright © 2018. Infor. All Rights Reserved. (11) Implementing a CHP Template – Continued 2. Open the template of your choice in a text editor and make any desired changes – Start with something simple to make sure it works, such as changing the text in the banner (shown below) – Important: be sure that the EmployeeSelfServiceLite webapp is pointing to your chosen template • Default is “custom home page is EmployeeLiteWelcome.html”(see slide “Viewing Templates without using a CHP”) 3. Re-zip the contents of the HomePages folder – Make sure you select the contents of the folder, not the folder itself
  • 12. Copyright © 2018. Infor. All Rights Reserved. (12) Implementing a CHP Template – Continued 4. Upload the CHP (these steps can also be found on the Configuring and Deploying Customized Homepages guide) 1. Sign in as an Administrator and navigate to Set Up > Configurable Home Pages 2. Click “Add” to create a new record 3. Fill out the fields • Set the Effective Date, likely to the current date • Name the CHP – this will be used in the URL parameter • Optionally, provide a more descriptive name for the CHP • Upload the ZIP file • Click Save 4. If you’re using Ming.le, you must also enable the CHP for a specific application 1. Click the User Menu icon, then click Admin Settings 2. Double click the application you would like to use the CHP, then switch to the Custom Parameters tab 3. Set the Value for CHP to the name of the CHP 5. Switch to the Employee Preview role and ensure that your changes have been applied 4. You may need to sign out and back in to see have the changes applied
  • 13. Copyright © 2018. Infor. All Rights Reserved. (13) Common Template Customizations • Once you’ve followed the previous steps, you can now begin further customizing the template • Common changes include: – Changing banner text and images – Enabling the banner carousel – Changing Quick Links • Link Destination (Internal & External) • Using custom icons • For the following slides, we will be using EmployeePreviewSplitBanner as an example
  • 14. Copyright © 2018. Infor. All Rights Reserved. (14) Customizing the Banner Image and Text 1. To change the banner image, you must first add the image to your ZIP in the images folder. For this example, I’ve added “blue-banner.jpg” – As per the comment found in the source code, the second url(…) is not necessary once the file is in a CHP, so it can just be removed 2. To change the banner text, simply edit the text found in the bannerHeader and bannerMessage elements Here is how the updated HTML looks:
  • 15. Copyright © 2018. Infor. All Rights Reserved. (15) Customizing the Banner Image and Text Before After
  • 16. Copyright © 2018. Infor. All Rights Reserved. (16) Banner Carousel • All of the new templates have the functionality to cycle through a series of banners, each with separate images, text, and links. • Two of the templates are set up to demonstrate this: – EmployeePreviewMonochrome.html and EmployeePreviewFullBackground. html • Instructions on how to implement this feature for any of the templates are contained inside the template HTML files as inline comments
  • 17. Copyright © 2018. Infor. All Rights Reserved. (17) Quick Links – Overview • The Quick Links can be found in the content element, and look like this: • Changes made to a cell will occur in three places: 1. Link Destination: the cell encapsulated an <a> tag, which defines a hyperlink 2. Icon: the icon displayed is currently one of our provided SVG icons, which are further described in the Icon Themes slide 3. Text: the text that is displayed on each cell, comprised of a caption and captionText
  • 18. Copyright © 2018. Infor. All Rights Reserved. (18) Quick Links – Internal Links • Use the hcm.util.navigateTo() function to go directly to menu items • For example, the below cell will look for XiEmployeeMenu.menu and bring the user to the item TimeOff – This includes menu items that lead to action forms, so it is possible to have a quick link trigger an action • The easiest way to view the various menus is to configure them as an administrator via Rich Client or the Configuration Console role in the web client
  • 19. Copyright © 2018. Infor. All Rights Reserved. (19) Quick Links – External Links • External links can be handled in two different ways: – External links can also use the hcm.util.navigateTo function to go to a specified link: onclick="hcm.util.navigateTo('https://www.infor.com’)” • This will open the link in a new tab or window depending on the user’s browser settings – Like any <a> tag, you can use the href attribute to specify the destination. However, since the Home Page is hosted in an iFrame, you must specify the target attribute to be either “_blank” or “_parent” • “_blank” will open in a new tab or window, “_parent” will open in the same window
  • 20. Copyright © 2018. Infor. All Rights Reserved. (20) Quick Links – Icons • While we suggest you use our provided icons as described on the Icon Themes slide, it is possible to use any image as an icon – Remember that to reference an image it must be in the HomePages/images folder • To use an image, simply remove the <svg> element (commented out in the example below) and add an <img> element • These images will automatically pick up CSS styling, so the only need to specify the src attribute • We suggest using a square image that is at least 100x100 pixels in size, and that it has adequate white space around it so that nothing is cut off when a circle is placed around it

Editor's Notes

  1. Please fill in the release number that your enhancement will be part of Do not include your name as the KT author
  2. HCM 58878