Difference between revisions of "NavigatorComunicator"
From OpenKM Documentation
Line 10: | Line 10: | ||
* GWTFolder getFolder() | * GWTFolder getFolder() | ||
* String getActualPath() | * String getActualPath() | ||
+ | * GWTFolder getRootFolder() | ||
+ | * GWTFolder getCategoriesRootFolder() | ||
+ | * GWTFolder getThesaurusRootFolder() | ||
+ | *GWTFolder getTemplatesRootFolder() | ||
+ | * GWTFolder getPersonalRootFolder() | ||
+ | * GWTFolder getMailRootFolder() | ||
+ | * GWTFolder getTrashRootFolder() | ||
== Example == | == Example == |
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");
}