Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature currently requires accessing the site using the built-in Safari browser.
if (preg_match("/^[0-9a-zA-Z]*$/"), $Filename) { }
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"$name.json\"");
echo "'".$cache."'";
saveToJSON: function(args) {
var win = window.open(this.cfg.dir+'response.php','ExpImpWindow','width=1200,scrollbars=yes');
//win.location.reload();
//win.document.write("'"+data+"'");
//win.focus();
var cache = this.pemodel.JSONInfo(args);
cache = dojo.toJson(cache);
var html = [];
html[html.length] = "<html><head></head><body><form id='formid' method='post' action='" + this.cfg.dir + "response.php'>";
html[html.length] = "<input type='hidden' name='cache' value='" + cache + "'/>";
html[html.length] = "<input type='hidden' name='to' value='client'/>";
html[html.length] = "<input type='hidden' name='name' value='" + this.pemodel._modelparamList[args.nr].descInstanceName + "'/>";
html[html.length]= "</form><script type='text/javascript'>document.getElementById(\"formid\").submit()</script></body></html>";
win.document.write(html.join(""));
},