svn path=/Website/branches/v2016.3/; revision=33375
This commit is contained in:
BIN
CUST/YKPN/banner_wolk.png
Normal file
BIN
CUST/YKPN/banner_wolk.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 32 KiB |
32
CUST/YKPN/cust.css
Normal file
32
CUST/YKPN/cust.css
Normal file
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* $Revision$
|
||||
* $Modtime: 15-02-12 14:31 $
|
||||
*/
|
||||
|
||||
/* field colors for required fields was #fdf6ee */
|
||||
* html .required,
|
||||
.required,
|
||||
.required:focus,
|
||||
input.required,
|
||||
input[type=text].required,
|
||||
input[type=password].required,
|
||||
select.required, option.required,
|
||||
textarea.required
|
||||
{
|
||||
background-color: #fff;
|
||||
border-left: 2px solid ==requiredbordercolor==;
|
||||
}
|
||||
|
||||
/* generic tag styles */
|
||||
input, textarea, select {
|
||||
font-size: 1em;
|
||||
padding: 2px 2px 2px 2px;
|
||||
margin: 0;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 2px;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
input[type=text], select {
|
||||
background-color: #fff;
|
||||
}
|
||||
69
CUST/YKPN/custfunctions.wsc
Normal file
69
CUST/YKPN/custfunctions.wsc
Normal file
@@ -0,0 +1,69 @@
|
||||
<?xml version="1.0"?>
|
||||
<component>
|
||||
<?component error="true" debug="true"?>
|
||||
<registration
|
||||
description="custfunctions"
|
||||
progid="custfunction.wsc"
|
||||
version="1.00"
|
||||
classid="{5B59A501-7A03-47C7-9C02-6025C83C2FAD}"
|
||||
>
|
||||
</registration>
|
||||
|
||||
<public>
|
||||
|
||||
<!-- properties -->
|
||||
<property name="Oracle">
|
||||
<put/>
|
||||
</property>
|
||||
<property name="__Log">
|
||||
<put/>
|
||||
</property>
|
||||
<property name="__DoLog">
|
||||
<put/>
|
||||
</property>
|
||||
<property name="safe">
|
||||
<put/>
|
||||
</property>
|
||||
|
||||
<!-- methods -->
|
||||
<method name="bez_postsave">
|
||||
<PARAMETER name="bezkeyArr"/>
|
||||
</method>
|
||||
</public>
|
||||
|
||||
<script language="javascript">
|
||||
<![CDATA[
|
||||
|
||||
/* properties */
|
||||
function put_Oracle(newValue) {Oracle = newValue};
|
||||
function put___Log(newValue) {__Log = newValue};
|
||||
function put___DoLog(newValue){__DoLog = newValue};
|
||||
function put_safe(newValue) {safe = newValue};
|
||||
|
||||
/* methods */
|
||||
/*
|
||||
$Id$
|
||||
*/
|
||||
|
||||
/* Dit zijn de enige drie functies die je mag gebruiken */
|
||||
var Oracle;
|
||||
var __Log;
|
||||
var __DoLog;
|
||||
var safe;
|
||||
|
||||
|
||||
bez_postsave = function (bezkeyArr, pResult)
|
||||
{
|
||||
|
||||
for (var i = 0; i < bezkeyArr.length; i++)
|
||||
{
|
||||
// Pincode toevoegen aan de bezoeker
|
||||
var sql_park = "BEGIN ykpn.set_bez_pincode(" + bezkeyArr[i] + "); END;";
|
||||
Oracle.Execute(sql_park);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
]]>
|
||||
</script>
|
||||
</component>
|
||||
Reference in New Issue
Block a user