$(document).ready( function() {$('#container_id').fileTree({root: '/some/folder/',script: '/listfiles'}, function(file) {alert(file);});});I want to set the 'root' parameter with a value held on the server (actually taken from the properties file).How do people go about this kind of thing? E.g. Would you put the whole thing in a JsRaw instance? Or, would you keep it as embedded in the HTML template and apply some kind of CSS Selector Transform (I haven't been able to find one that would work).Curious to hear people's thoughts.ThanksDamian.
--