|
From: <sv...@de...> - 2005-06-09 21:16:23
|
Author: pcamacho
Date: 2005-06-09 17:16:26 -0400 (Thu, 09 Jun 2005)
New Revision: 1275
Modified:
humano2/trunk/web/builder/site/js/formreport.js
humano2/trunk/web/builder/site/xsl/createreport.xsl
Log:
CHANGE: disabling of having condition in report because of bug #123.
Modified: humano2/trunk/web/builder/site/js/formreport.js
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/js/formreport.js 2005-06-09 20:10:43 U=
TC (rev 1274)
+++ humano2/trunk/web/builder/site/js/formreport.js 2005-06-09 21:16:26 U=
TC (rev 1275)
@@ -8,7 +8,7 @@
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version. =20
//
-//
+// $Id$
*/
=20
//////////////////////////////////////////////ReportParams Class ///////=
////////////////////////////////////////////////
@@ -133,7 +133,8 @@
var persoColumnsStr =3D persoColumns.ReturnValues();
//alert("persoColumnsStr: " + persoColumnsStr);
=20
- var havingsStr =3D havings.ReturnValues();
+ //var havingsStr =3D havings.ReturnValues(); Commented due to bug#12=
3
+ var havingsStr =3D "";
=20
//Update the submit all TD
var divSubmitAll =3D GetNodeByTagNameAndAttName("div","SubmitAll")[0=
];
Property changes on: humano2/trunk/web/builder/site/js/formreport.js
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: humano2/trunk/web/builder/site/xsl/createreport.xsl
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/xsl/createreport.xsl 2005-06-09 20:10:=
43 UTC (rev 1274)
+++ humano2/trunk/web/builder/site/xsl/createreport.xsl 2005-06-09 21:16:=
26 UTC (rev 1275)
@@ -1,8 +1,9 @@
<?xml version=3D"1.0" encoding=3D"UTF-8"?>
+<!-- $Id$ -->
<xsl:stylesheet version=3D"1.0" xmlns:xsl=3D"http://www.w3.org/1999/XSL/=
Transform">
<xsl:output method=3D"html" />
<xsl:template match=3D"/">
-<html>
+ <html>
<head>
<title>Report Edit</title>
<script language=3D"javascript">
@@ -148,6 +149,8 @@
</xsl:if>
=20
//Having
+ //Disabled as there's still a problem in viewtools. See =
bug #123
+ /*
var selectIdAttArrayHaving =3D new Array();
var selectOpArrayHaving =3D new Array();
var selectFuncArrayHaving =3D new Array();
@@ -179,7 +182,7 @@
}
var InputLineHavings =3D new InputLine(InputLinePara=
msHavings);
</xsl:if>
- =20
+ */
</script>
</head>
<body>
@@ -308,8 +311,8 @@
<!--######################### END: Perso=
Columns ################################## -->
=20
<!--######################### Havings ##=
########################################## -->
- <!-- Commented for now due to a problem =
in showview see bug # -->
- =20
+ <!-- Commented for now due to a problem =
in showview see bug #123 -->
+ <!--
<tr>
<td colspan=3D"2">
<table width=3D"100%" border=3D"=
0" cellSpacing=3D"0" cellPadding=3D"0">
@@ -343,7 +346,7 @@
</script>
</td>
</tr>
- =20
+ -->
<!--######################### END: Havin=
gs ####################################### -->
=20
<!-- ######################## Group colu=
mns ############################## -->
@@ -489,7 +492,8 @@
=
expandFormSort,
=
expandFormFilter,
=
expandFormPersoColumns,
- =
expandFormHavings);=20
+ =
null);
+ =
//expandFormHavings); Commented due to bug #123 (replaced temporarly by =
null)
</xsl:attribute>
</input>
</div>
Property changes on: humano2/trunk/web/builder/site/xsl/createreport.xsl
___________________________________________________________________
Name: svn:keywords
+ Id
|