I have built a RCP application with Intropage in HTML. I also have other perspectives in the application. How do call (or load) a perspective from a button click in the HTML intro page ?
Asked
Active
Viewed 59 times
0
-
An RCP written using what? Eclipse? – greg-449 Mar 05 '15 at 07:43
1 Answers
0
You can find views like
PlatformUI.getWorkbench().getViewRegistry().find(id)
or perspectives like
PlatformUI.getWorkbench().getPerspectiveRegistry().getPerspectives()

Markus Lausberg
- 12,177
- 6
- 40
- 66
-
yes but how do I call it from the HTML page. have written a javascript to call java class from same folder . but it does not work – clearb Mar 05 '15 at 10:58