Hello, you need to reference the weblib.help. This package provides an Angular library for online help support in Rexroth applications. Getting started Run npm i @rexroth/help to install the package in your workspace. Add the following object to your application's assets in angular.json: {
"glob": "**/*",
"input": "./node_modules/@rexroth/help/assets",
"output": "/assets/"
} Import the weblib help module: import { HelpModule } from '@rexroth/help'; To show the page help icon in the header insert in your html page: <rexroth-page-help helpKey="YourPageTopicId"></rexroth-page-help> To show a context specifig help with a small icon insert in your html page: <rexroth-context-help helpKey="YourPageTopicId.SubId"></rexroth-context-help>
... View more