FSN#41529 Upload mogelijkheid voor xxxx.xsl iets betere dialoog titel

svn path=/Website/branches/v2017.2/; revision=35771
This commit is contained in:
Jos Groot Lipman
2017-10-19 14:56:07 +00:00
parent 9637fa154e
commit 0857e92ec0

View File

@@ -25,9 +25,9 @@
<head> <head>
<% FCLTHeader.Generate(); %> <% FCLTHeader.Generate(); %>
<script> <script>
function bl (url) function bl (url, titel)
{ {
FcltMgr.openModalDetail(url); FcltMgr.openModalDetail(url, { titel: titel} );
} }
</script> </script>
</head> </head>
@@ -43,7 +43,8 @@
{ {
var url = "../shared/BijlagenForm.asp?module=" + module; var url = "../shared/BijlagenForm.asp?module=" + module;
var proturl = protectQS.create(url); var proturl = protectQS.create(url);
CreateButton("{0} ({1})".format(label, module), "bl('" + safe.jsstring(proturl) + "')"); var tekst = "{0} ({1})".format(label, module);
CreateButton(tekst, "bl('" + safe.jsstring(proturl) + "', '" + safe.jsstring(tekst) + "')");
} }
} }