Difference between revisions of "NavigatorComunicator"
From OpenKM Documentation
Line 13: | Line 13: | ||
* GWTFolder getCategoriesRootFolder() | * GWTFolder getCategoriesRootFolder() | ||
* GWTFolder getThesaurusRootFolder() | * GWTFolder getThesaurusRootFolder() | ||
− | + | * GWTFolder getTemplatesRootFolder() | |
* GWTFolder getPersonalRootFolder() | * GWTFolder getPersonalRootFolder() | ||
* GWTFolder getMailRootFolder() | * GWTFolder getMailRootFolder() |
Revision as of 12:48, 22 September 2011
Read Methods
- int getStackIndex()
- boolean isTaxonomyShown()
- boolean isCategoriesShown()
- boolean isThesaurusShown()
- boolean isTemplatesShown()
- boolean isPersonalShown()
- boolean isMailShown()
- boolean isTrashShown()
- GWTFolder getFolder()
- String getActualPath()
- GWTFolder getRootFolder()
- GWTFolder getCategoriesRootFolder()
- 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");
}