General Actions:
| Name | Type (Values) |
|---|---|
| wiki | String ("all" or the name of a wiki database) |
| space | String (the name of a space within the wiki) |
| page | String (the name of a page within the space) |
| displaySuggest | boolean (true to display a suggest field at the bottom) |
| displayLinks | boolean (true to display links in tree nodes) |
| displayAttachments | boolean (true to display attachments under page nodes) |
| displayAttachmentsOnTop | boolean (true to display attachments before children nodes) |
## Smartclient $xwiki.jsfx.use("js/smartclient/initsc.js", true)## $xwiki.jsfx.use("js/smartclient/modules/ISC_Core.js")## $xwiki.jsfx.use("js/smartclient/modules/ISC_Foundation.js")## $xwiki.jsfx.use("js/smartclient/modules/ISC_Containers.js")## $xwiki.jsfx.use("js/smartclient/modules/ISC_Grids.js")## $xwiki.jsfx.use("js/smartclient/modules/ISC_Forms.js")## $xwiki.jsfx.use("js/smartclient/modules/ISC_DataBinding.js")## $xwiki.jsfx.use("js/smartclient/skins/Enterprise/load_skin.js")## ## XWikiExplorer $xwiki.jsfx.use("js/xwiki/xwikiexplorer/xwikiexplorer.js", true)##
<div id="XWEWrapper" style="height:300px;margin-right:20px;padding-bottom:30px;"></div> <script> isc.XWETreeGrid.create({ defaultValue: "", htmlElement: "XWEWrapper", // Mandatory HTML wrapper. dataSource: isc.XWEDataSource.create({}), }).draw(); </script>
isc.XWETreeGrid.create({
defaultValue: "",
htmlElement: "XWEWrapper", // Mandatory HTML wrapper.
dataSource: isc.XWEWikiDataSource.create({}),
}).draw();
isc.XWETreeGrid.create({
defaultValue: "",
htmlElement: "XWEWrapper", // Mandatory HTML wrapper.
dataSource: isc.XWESpaceDataSource.create({ space: "Main" }),
}).draw();
isc.XWETreeGrid.create({
defaultValue: "",
htmlElement: "XWEWrapper", // Mandatory HTML wrapper.
dataSource: isc.XWEPageDataSource.create({ space: "Main", page: "WebHome" }),
}).draw();