Files
Facilitor/APPL/CAD/rap_algc.asp
Jos Groot Lipman 2aa489e0c7 FCLT#Recordsets die niet gesloten zijn beter detecteren
svn path=/Website/trunk/; revision=47235
2020-06-24 15:42:24 +00:00

33 lines
962 B
Plaintext

<%@ language="javascript"%>
<% /*
$Revision$
$Id$
File: CAD/rap_algc.asp
Description: Inhoud van het ALG-tabblad van FG
*Concept* variant
Parameters: floorKey (required)
highlight (optional list of room-keys to filter)
Context: -
*/%>
<!-- #include file="../Shared/common.inc" -->
<!-- #include file="cad_contour_list.inc" -->
<%
var floorKey = getQParamInt("vKey", -1);
var highlight_arr = getQParamIntArray("highlight", []); // Comma-separated room_key_list (terrains). Optional
var outputmode = getQParamInt("outputmode", 0);
var showall = getQParamInt("showall", 0) == 1;
contour_list ( "*",
{ outputmode: outputmode,
showall: showall,
flr_key: floorKey,
concept: true,
highlight_arr: highlight_arr
}
);
%>
<% ASPPAGE_END(); %>