0

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 ?

greg-449
  • 109,219
  • 232
  • 102
  • 145
clearb
  • 43
  • 1
  • 6

1 Answers1

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