Here you can see what I am trying to do.
#removed_broken_link
This is an example in HTML with java script that opens a new window.
where 'http://www.google.com' would be the full url of the pdf file that I have clicked on the server side and is passed to the HTML code, wich is executed by the java script.
This can be copied and pasted to test it.
Code:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Testing Flash HTML</title>
<script type="text/javascript">
function newWindow(url) {
window.open(url,"Window JavaScript", '', 'resizable,scrollbars');
return false;
}
</script>
</head>
<body>
<br/>
<a href="#" onclick="return newWindow('http://www.google.com')">See PDF File I select from the left side - server</a>
</body>
</html>
I am missing information to implement it.
I guess this can be implemented in many ways.
1) Getting the Staus full url to be a hyperlink where I click and open a new window in the browser (if this can be easily done it would be great)
2) Send the Status var to the HTML code and use it instead
http://www.google.com
I am using JFU component.
Could you help me to implement it?
Thank you.