Difference between revisions of "NavigatorComunicator"
From OpenKM Documentation
(2 intermediate revisions by the same user not shown) | |||
Line 14: | Line 14: | ||
* GWTFolder getRootFolder() | * GWTFolder getRootFolder() | ||
* GWTFolder getCategoriesRootFolder() | * GWTFolder getCategoriesRootFolder() | ||
+ | * GWTFolder getMetadataRootFolder() | ||
* GWTFolder getThesaurusRootFolder() | * GWTFolder getThesaurusRootFolder() | ||
* GWTFolder getTemplatesRootFolder() | * GWTFolder getTemplatesRootFolder() | ||
Line 19: | Line 20: | ||
* GWTFolder getMailRootFolder() | * GWTFolder getMailRootFolder() | ||
* GWTFolder getTrashRootFolder() | * GWTFolder getTrashRootFolder() | ||
+ | * boolean isPanelSelected() | ||
+ | * GWTNode getNode(); | ||
== Example == | == Example == |
Latest revision as of 07:41, 16 September 2014
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()
- boolean isPanelSelected()
- GWTNode getNode();
Example
int stack = NavigatorComunicator.getStackIndex();
if (stack==0) {
Window.alert("First stack enabled");
} else {
Window.alert("Other stack");
}