Skip to content

Instantly share code, notes, and snippets.

@jtesser
Created November 27, 2012 17:56
Show Gist options
  • Save jtesser/4155872 to your computer and use it in GitHub Desktop.
Save jtesser/4155872 to your computer and use it in GitHub Desktop.
<h1>MACRO TEST</h1>
<div>#helloWorld()</div>
<h1>Velocity Viewtool Test</h1>
<div>$helloWorld</div>
<div>$helloWorld.hello()</div>
<div>$helloWorld.hello(1)</div>
<div>$helloWorld.hello("2")</div>
<h1>Test DWR</h1>
<script type="text/javascript" src="/dwr/engine.js"></script>
<script type="text/javascript" src="/dwr/util.js"></script>
<script type="text/javascript" src="/dwr/interface/TestDWR.js"></script>
<script>
function myCallback(data){
alert(data);
}
TestDWR.hello(myCallback);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment