I’m looking to display messages to the user in the installation node. For a simple example, when the user clicks button ‘A’, I want a message that says “You clicked A.” And when they click button “B”, it says “You clicked B”.
Mock structure:
<button>A</button>
<button>B</button>
<message></message>
The message tag should get filled with the text corresponding to whatever button was most recently pressed.
Rooting around the API I couldn’t find any obvious way to do that. com.ur.urcap.api.ui.component.[HTMLComponent,DivComponent] interfaces only allow enabling and disabling.
Thanks