I am conducting a proof of concept for Open Text Content Server UI widgets.
Here are the steps I performed
Created a Sandbox with CS 16.0.4 (2017-03)
Created an html page (bellow) with the sample code provided in documentation
<html>
<head>
<script src="http://server:8080/img/csui/bundles/csui-loader.js"></script>
<!–tried without csui-loder got cusi not found error so added loader also !–>
<script src="http://server:8080/img/csui/bundles/csui-app.js"></script>
<!– in Documentation only img/csui/csui.js is there, getting 404 error so found in installation dir about name change !–>
<link rel="stylesheet" href="http://server:8080/img/csui/bundles/csui-app.css">
<script>
csui.onReady(function () {
new csui.widget.FolderBrowserWidget({
placeholder: "#browser",
connection: {
url: "http://server:8080/OTCS/livelink.exe/api/v1/",
supportPath: "/img"
}
}).show();
});
</script>
</head>
<body>
<div id="browser"></div>
</body>
</html>