Hi,
I`m trying out the new CS UI Widget module. I went to the documentation and grabbed the simplest example and am trying to run it. The HTML is as follows (I added the Doc Type which isn't showing after being advised by the browser's javascript debugger):
<!DOCTYPE html>
<script>
csui.onReady(function () {
new csui.FolderBrowserWidget({
placeholder: "#browser",
connection: { url: "http://192.168.254.29/OTCS13/cs/api/v1/" }
}).display();
});
</script>
<div id="browser"></div>
When I run the above example (IP address is for my virtual machine, and I changed cs to cs.exe in the api call), I get the following javascript error:
Uncaught Error: Missing supportPath in the connection for http://192.168.254.29/OTCS13/cs/api/v1/
Am I missing anything if I want to get this simple example working? I've also deployed all the patches for the CS UI Widget module (well the two of them), and this is CS 10.0 U13
-Hugh