[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.platform.rcp] MultiPageEditor save problem with JSEditor
|
I have an rcp application which uses a MultiPageEditor.
The MultiPageEditor adds a web tools JSEditor to page 0 like so:
JSEditor jseditor = new JSEditor();
int index = addPage(jseditor, getEditorInput());
When I run the application and load a Javascript file using the
File -> open file menu, it opens the file in the MultiPageEditor and
shows Javascript syntax highlighting as expected, but when I try to save
by either doing CTRL-S or by right clicking and saving nothing happens.
The method doSave in the MultiPageEditor never gets called.
Any idea why?
Any help will be highly appreciated !