Files
Facilitor/APPL/Shared/loadControlemode.asp
Maykel Geerdink 385e596e96 SUTF#86455: Ongewenste standaard taakafhandeling in mobiele app.
svn path=/Website/trunk/; revision=67169
2024-11-25 10:34:03 +00:00

31 lines
741 B
Plaintext

<%@language = "javascript" %>
<% /*
$Revision$
$Id$
*/ %>
<%
DOCTYPE_Disable = true;
%>
<!-- #include file="../Shared/common.inc" -->
<!-- #include file="../Shared/selector.inc" -->
<%
// Build a building list
var controle_type = getFParamInt("controle_type", -1); // Controle type.
var initKey = getFParamInt("initKey", -1); // Controle type.
var sql = "SELECT ins_controlemode_key"
+ " , ins_controlemode_oms"
+ " FROM ins_controlemode"
+ " WHERE ins_srtcontrole_type = " + controle_type
+ " ORDER BY 2";
FCLTselector("controlemode",
sql,
{ initKey: initKey,
emptyOption: ""
});
%><% ASPPAGE_END(); %>