HSLE#36019 een eigen lcl voor de anuleer knop

svn path=/Website/trunk/; revision=29565
This commit is contained in:
Ruud Lipper
2016-05-30 11:13:59 +00:00
parent 6f9503c76c
commit 061d58f8d5
2 changed files with 5 additions and 5 deletions

View File

@@ -57,7 +57,7 @@ var parent_key = getQParamInt("parent_key");
BLOCK_END();
var buttons = [ {title: L("lcl_ok"), icon: "opslaan.png", action: "mld_submit()" },
{title: L("lcl_cancel"), icon: "undo.png", action: "mld_cancel()" } ];
{title: L("lcl_mld_cancel_double"), icon: "undo.png", action: "mld_cancel()" } ];
CreateButtons(buttons);
%>
<br><br>

View File

@@ -114,7 +114,7 @@ var where_ins = "";
BLOCK_START("mldContinue", L("lcl_mld_similarcalls"));
%>
<div id="mldsimilar"><%=L("lcl_mld_askdouble").format(isNew?L("lcl_mld_no_own_mld"):L("lcl_not_link"), L("lcl_cancel"))%></div>
<div id="mldsimilar"><%=L("lcl_mld_askdouble").format(isNew?L("lcl_mld_no_own_mld"):L("lcl_not_link"), L("lcl_mld_cancel_double"))%></div>
<%
sql = "SELECT DISTINCT m.mld_melding_key"
+ " , sd.ins_srtdiscipline_prefix"
@@ -202,7 +202,7 @@ var where_ins = "";
// 2) Nieuwe melding aanmaken (opnieuw laden van save asp, maar niet meer controleren op double) [2]
// 3) Geen melding aanmaken, gewoon terug. [cancel]
var buttons = [ {title: L("lcl_mld_no_own_mld"), icon: "undo.png", action: "mld_double(2)" },
{title: L("lcl_cancel"), icon: "undo.png", action: "mld_cancel()" } ];
{title: L("lcl_mld_cancel_double"), icon: "undo.png", action: "mld_cancel()" } ];
}
else // accepteren/afwijzen
{ // Drie modes
@@ -210,7 +210,7 @@ var where_ins = "";
// 2) Het is geen dubbele melding. Zet de melding op geaccepteerd (Button accepteren) [2]
// 3) Melding niet accepteren/afwijzen (Button annuleren) [cancel]
var buttons = [ {title: L("lcl_not_link"), icon: "opslaan.png", action: "mld_double(2)" },
{title: L("lcl_cancel"), icon: "undo.png", action: "mld_cancel()" } ];
{title: L("lcl_mld_cancel_double"), icon: "undo.png", action: "mld_cancel()" } ];
}
CreateButtons(buttons);
%>