Here is caller button samples in html:
<input type='button' value='Call' onclick='Test()'>
And here are some functions I tried and which were not worked:
<script type="text/javascript">
function Test() {
com.tests.client.Test_GoogleWeb_JSNI::Callee()();
}
</script>
But we are not able to call Callee().How we can achieve this?I mean how we can invoke JSNI function from javascript?
Help would be appreciated.