I am trying to update my phpbb forum with a sidebar using the XPwidget script from dhtmlgoodies.com found here
found here.
I have put the appropriate scripting in the body and header as indicated but the javascript is the problem because all I get is a blue column with some text.
according to the site I need to "call the function "initDhtmlgoodies_xpPane" to initialize the panes." In the details there is an example:
<script type="text/javascript">
/*
Arguments to function
1) Array of titles
2) Array indicating initial state of panels(true = expanded, false = not expanded )
3) Array of cookie names used to remember state of panels
*/
initDhtmlgoodies_xpPane(Array('File and Folder Tasks','Other places','Details'),Array(true,true,false),Array('p ane1','pane2','pane3'));
</script>
but I don't know how to do this. I tried adding that scrip below the HTML and it is not working. How do I call the javascript to bring the page to life? (do I need to create a java file separate from my html page or is there something I need to add to the html page?)