ASTE#37915 Terugdraaien enkele aanpassingen
svn path=/Website/trunk/; revision=33206
This commit is contained in:
@@ -31,7 +31,6 @@
|
|||||||
<!-- #include file="../Shared/resultset_table_v2.inc" -->
|
<!-- #include file="../Shared/resultset_table_v2.inc" -->
|
||||||
<!-- #include file="./res.inc" -->
|
<!-- #include file="./res.inc" -->
|
||||||
<!-- #include file="../Shared/getkenmerksql.inc" -->
|
<!-- #include file="../Shared/getkenmerksql.inc" -->
|
||||||
<!-- #include file="../Shared/Shared.inc" -->
|
|
||||||
|
|
||||||
<%
|
<%
|
||||||
FCLTHeader.Requires({ plugins:["jQuery"],
|
FCLTHeader.Requires({ plugins:["jQuery"],
|
||||||
|
|||||||
@@ -756,7 +756,7 @@ function convertTimeZone(thisDate, fromTZ, toTZ)
|
|||||||
// <20> never as part of a computation.
|
// <20> never as part of a computation.
|
||||||
function toTimeString(jsDate, bWithSeconds, converted)
|
function toTimeString(jsDate, bWithSeconds, converted)
|
||||||
{
|
{
|
||||||
if (jsDate==null)
|
if (jsDate===null)
|
||||||
return "";
|
return "";
|
||||||
|
|
||||||
if (typeof jsDate == "object" && jsDate.type == 135/*adDBTimeStamp, oRs("datum")*/)
|
if (typeof jsDate == "object" && jsDate.type == 135/*adDBTimeStamp, oRs("datum")*/)
|
||||||
@@ -792,7 +792,7 @@ function toDateString(jsDate, noDay, pretty, converted)
|
|||||||
var tomorrow = (new Date(today));
|
var tomorrow = (new Date(today));
|
||||||
tomorrow.setDate(today.getDate()+1);
|
tomorrow.setDate(today.getDate()+1);
|
||||||
|
|
||||||
if (jsDate==null)
|
if (jsDate===null)
|
||||||
return "";
|
return "";
|
||||||
|
|
||||||
if (typeof jsDate == "object" && jsDate.type == 135/*adDBTimeStamp, oRs("datum")*/)
|
if (typeof jsDate == "object" && jsDate.type == 135/*adDBTimeStamp, oRs("datum")*/)
|
||||||
@@ -825,7 +825,7 @@ function toDateString(jsDate, noDay, pretty, converted)
|
|||||||
}
|
}
|
||||||
function toDateTimeString(jsDate, bWithSeconds, noDay, prettyday)
|
function toDateTimeString(jsDate, bWithSeconds, noDay, prettyday)
|
||||||
{
|
{
|
||||||
if (jsDate==null)
|
if (jsDate===null)
|
||||||
return "";
|
return "";
|
||||||
|
|
||||||
if (typeof jsDate == "object" && jsDate.type == 135/*adDBTimeStamp, oRs("datum")*/)
|
if (typeof jsDate == "object" && jsDate.type == 135/*adDBTimeStamp, oRs("datum")*/)
|
||||||
|
|||||||
Reference in New Issue
Block a user