Difference between revisions of "NavigatorComunicator"
From OpenKM Documentation
Line 14: | Line 14: | ||
* GWTFolder getRootFolder() | * GWTFolder getRootFolder() | ||
* GWTFolder getCategoriesRootFolder() | * GWTFolder getCategoriesRootFolder() | ||
+ | * GWTFolder getMetadataRootFolder() | ||
* GWTFolder getThesaurusRootFolder() | * GWTFolder getThesaurusRootFolder() | ||
* GWTFolder getTemplatesRootFolder() | * GWTFolder getTemplatesRootFolder() |
Revision as of 17:53, 11 November 2011
Read Methods
- int getStackIndex()
- boolean isTaxonomyShown()
- boolean isCategoriesShown()
- boolean isMetadataShown()
- boolean isMetadataShown
- boolean isThesaurusShown()
- boolean isTemplatesShown()
- boolean isPersonalShown()
- boolean isMailShown()
- boolean isTrashShown()
- GWTFolder getFolder()
- String getActualPath()
- GWTFolder getRootFolder()
- GWTFolder getCategoriesRootFolder()
- GWTFolder getMetadataRootFolder()
- GWTFolder getThesaurusRootFolder()
- GWTFolder getTemplatesRootFolder()
- GWTFolder getPersonalRootFolder()
- GWTFolder getMailRootFolder()
- GWTFolder getTrashRootFolder()
Example
int stack = NavigatorComunicator.getStackIndex();
if (stack==0) {
Window.alert("First stack enabled");
} else {
Window.alert("Other stack");
}