I need to open the solution in webclient without the browser bars. What I´m doing is call an HTML file in the server that opens it, but I would like to know if this can be done from Servoy because the way I´m doing it shows a message about Popups.
This is the code I use in the HTML file I have in the server:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script language="JavaScript">
function openMySolution(){
window.open('http://myserver/servoy-webclient/ss/s/GSDespachos', 'principal', 'location=no,menubar=no,status=no,toolbar=no');
}
</script>
</head>
<body onload="openMySolution()">
</body>
</html>