Hello,
I have a page in my site showing a FolderBrowserWidget with CS 10.5, using this model:
<script src="http://server/otcssupport/csui/csui.js"></script>
<link rel="stylesheet" href="http://server/otcssupport/csui/csui.css">
<script>
csui.onReady( function() {
new csui.widget.FolderBrowserWidget( {
placeholder: "#browser",
connection: {
url: "http://server/otcs/cs/api/v1/",
supportPath: "/otcssupport"
}
} ).show();
} );
</script>
<div id="browser"></div>
Now I have to use something similar with CS 16.2, and It doesn’t work wit the same links (csui.js and csui.css), and I can’t see an example of this object in the documentation. Can someone give some help?
Thanks and regards,