System Admins can create & modify home pages. Creating additional home pages allow to separate widgets into separate tabs for easier management. Each EPC can have its own set of home pages.

To add a home page, navigate to the Advanced tab in the System Admin menu. Find the “HOMEPAGE_TABS” key and click on the icon to edit.

The format should be in JSON.

Objects, denoted between brackets { }, should include these attributes:

  • “id” – The order in which the tab will appear in the menu
  • “title” – The title of the home page

Objects and attributes should be separated by a comma (,). All objects must be contained within square brackets [ ]. See code below for an example.

[
   {
      "id":"1",
      "title":"Home"
   },
   {
      "id":"2",
      "title":"My Dashboard"
   },
   {
      "id":"3",
      "title":"My Forms"
   },
   {
      "id":"4",
      "title":"My Actions"
   }
]

The code above will result in this menu:

The tabs will also be shown at the top once the user is viewing a home page:

To delete a home page, simply delete the object contained in brackets { }.

Feedback

Was this helpful?

Yes No
You indicated this topic was not helpful to you ...
Could you please leave a comment telling us why? Thank you!
Thanks for your feedback.

Post your comment on this topic.

Please do not use this for support questions.
Visit the Support Portal

Post Comment