FORUM CTRLX AUTOMATION
ctrlX World Partner Apps for ctrlX AUTOMATION
04-18-2023 02:23 PM
Hello everyone,
we are currently developing an app for the CtrlX plattform.
The building, installation and execution process works flawlessly on the virtual CtrlX.
In the next step, we now want to support the "current page help", to offer the user a more individual help than just a user manual.
However, this option is greyed out in our app currently:
How can we implement this feature?
Solved! Go to Solution.
05-02-2023 07:27 AM
We are checking this internally.
05-08-2023 02:13 PM
Hello,
you need to reference the weblib.help.
This package provides an Angular library for online help support in Rexroth applications.
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>
01-15-2024 06:37 AM
Hello,
I am not able to install this package npm i @rexroth/help, I am getting this error
Can you help me how to reslove this error