I can hide a component with com.ibm.rcp.visible=false .But what can I do with those components then?
For example I thought I could do the following:
-
a view component pushes the noteid of the current selected document to a hidden “proxy” component (a Notes form).
-
the hidden form gets the ID, gets the document, computes HTML and pushes that to a browser component in the sidebar.
I don’t want to let the view compute the HTML because the user would have to wait for the computation to finish then. When going over another component the process is independent and the user experience is better.
But currently I cannot hide that proxy component, because then I cannot do wiring between the view, the proxy and the browser.
So what I don’t understand: what exactly are hidden components for? How can I use them?