FSN#34509 Third party library updates
svn path=/Website/trunk/; revision=27847
This commit is contained in:
@@ -198,12 +198,12 @@ function scaffolding_edit(model, scf_params)
|
||||
buttons.push(scf_params.edit.buttons[i]);
|
||||
}
|
||||
}
|
||||
buttons.push({title: L("lcl_submit"), action:"scf_submit()", icon: "opslaan.png", singlepress: true });
|
||||
buttons.push({title: L("lcl_submit"), action:"scf_submit()", icon: "opslaan.png", singlepress: true, id: "btn_scf_submit" });
|
||||
if (modal && model.REST_DELETE && key > 0)
|
||||
buttons.push({title: L("lcl_delete"), action:"scf_delete()", icon: "delete.png", singlepress: true });
|
||||
buttons.push({title: L("lcl_cancel"), action:"scf_cancel()", icon: "undo.png" });
|
||||
buttons.push({title: L("lcl_delete"), action:"scf_delete()", icon: "delete.png", singlepress: true, id: "btn_scf_delete" });
|
||||
buttons.push({title: L("lcl_cancel"), action:"scf_cancel()", icon: "undo.png", id: "btn_scf_cancel" });
|
||||
if (model.hashints)
|
||||
buttons.splice(0, 0, {title: L("lcl_hint"), action:"scf_enablehint()", icon: "lightbulb.png" });
|
||||
buttons.splice(0, 0, {title: L("lcl_hint"), action:"scf_enablehint()", icon: "lightbulb.png", id: "btn_scf_enablehint" });
|
||||
if (!modal)
|
||||
IFRAMER_HEADER(model.record_title, buttons);
|
||||
%>
|
||||
|
||||
@@ -126,11 +126,11 @@ function scaffolding_list(model, scf_params)
|
||||
// en we kunnen geen 500-status meer doen? busyLoading(); // via ResultsetTable is te laat (na REST_GET) dus maar zelf
|
||||
buttons = [];
|
||||
if (!nobuttons)
|
||||
buttons.push({ icon: "page_refresh.png", title: L("lcl_refresh"), action: "FcltMgr.reload()" });
|
||||
buttons.push({ icon: "page_refresh.png", title: L("lcl_refresh"), action: "FcltMgr.reload()", id: "btn_scf_refresh" });
|
||||
if (model["REST_POST"] && authparams.PRSwritelevel < 9 && authparams.ALGwritelevel < 9)
|
||||
{
|
||||
var addurl = scf_params.this_path + "?mode=wrap" + transit;
|
||||
buttons.push({ icon: "plus.png", title: L("lcl_add"), action: "scf_add()" });
|
||||
buttons.push({ icon: "plus.png", title: L("lcl_add"), action: "scf_add()", id: "btn_scf_add" });
|
||||
}
|
||||
|
||||
var xxx_params = { filter : scf_params.filter || shared.qs2json(model), columns: scf_params.list.columns, groupby: scf_params.list.groupby };
|
||||
|
||||
@@ -48,7 +48,7 @@ if (params.extFilter != "xxx")
|
||||
<html>
|
||||
<head>
|
||||
<% FCLTHeader.Generate(); %>
|
||||
<script type="text/javascript">
|
||||
<script>
|
||||
function sig_submit()
|
||||
{
|
||||
if (signaturePad.isEmpty())
|
||||
@@ -142,9 +142,9 @@ if (params.extFilter != "xxx")
|
||||
</div>
|
||||
<div class="m-signature-pad--footer">
|
||||
<%
|
||||
var buttons = [ {title: L("lcl_filedelete"), action:"sig_clear()", icon: "delete.png", singlepress: true, id: "btn_clear" },
|
||||
{title: L("lcl_submit"), action:"sig_submit()", icon: "opslaan.png", singlepress: true, id: "btn_submit" },
|
||||
{title: L("lcl_cancel"), action:"sig_cancel()", icon: "undo.png" }
|
||||
var buttons = [ {title: L("lcl_filedelete"), id: "btn_clear", action:"sig_clear()", icon: "delete.png", singlepress: true },
|
||||
{title: L("lcl_submit"), id: "btn_submit", action:"sig_submit()", icon: "opslaan.png", singlepress: true },
|
||||
{title: L("lcl_cancel"), id: "btn_cancel", action:"sig_cancel()", icon: "undo.png" }
|
||||
];
|
||||
CreateButtons(buttons);
|
||||
%>
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
%>
|
||||
<html>
|
||||
<head>
|
||||
<script type="text/javascript" src="../LocalScripts/jquery-1.11.0.js"></script>
|
||||
<script type="text/javascript" src="../LocalScripts/jquery-1.11.3.js"></script>
|
||||
<script type="text/javascript" src="../LocalScripts/FCLTMgr.js?tm=<%=(new Date).getTime()%>"></script>
|
||||
</head>
|
||||
<body onload="if (FcltMgr.getData('expired')) FcltMgr.getData('expired')()">
|
||||
|
||||
@@ -21,8 +21,8 @@
|
||||
*/
|
||||
|
||||
/************************************************************/
|
||||
_jqueryver = "jquery-1.11.0"; // Pas ook expired.asp aan en FacmgtTools.asp
|
||||
_jqueryuiver = "jquery-ui-1.10.4.custom";
|
||||
_jqueryver = "jquery-1.11.3"; // Pas ook expired.asp aan en FacmgtTools.asp
|
||||
_jqueryuiver = "jquery-ui-1.11.4.custom";
|
||||
|
||||
if (typeof FCLTHeader != "undefined")
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user