dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #18562
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 7864: Minor fix for Enrollment form.
------------------------------------------------------------
revno: 7864
committer: Tran Chau <tran.hispvietnam@xxxxxxxxx>
branch nick: dhis2
timestamp: Mon 2012-08-06 16:46:48 +0700
message:
Minor fix for Enrollment form.
modified:
dhis-2/dhis-web/dhis-web-caseentry/src/main/webapp/dhis-web-caseentry/programEnrollmentForm.vm
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-caseentry/src/main/webapp/dhis-web-caseentry/programEnrollmentForm.vm'
--- dhis-2/dhis-web/dhis-web-caseentry/src/main/webapp/dhis-web-caseentry/programEnrollmentForm.vm 2012-07-26 03:35:55 +0000
+++ dhis-2/dhis-web/dhis-web-caseentry/src/main/webapp/dhis-web-caseentry/programEnrollmentForm.vm 2012-08-06 09:46:48 +0000
@@ -19,12 +19,12 @@
<!-- Enroll program TAB -->
<div id="tab-2">
<form id='programEnrollmentInforForm' name='programEnrollmentInforForm' action='#' method="POST" >
- #if( $noIden > 0 || $noOtherGroup > 0 || $noGroup > 0 )
+ #if( ( $!noIden && $!noIden > 0) || ( $!noOtherGroup && $!noOtherGroup > 0) || ( $!noGroup && $!noGroup > 0 ) )
<input type='hidden' id='programId' name='programId' value='$programInstance.program.id'>
<input type='hidden' id='patientId' name='patientId' value='$programInstance.patient.id'>
<!-- IDENTIFIERS -->
<table id='enrollmentInforDiv' name='enrollmentInforDiv' class='mainPageTable' >
- #if( $noIden > 0 )
+ #if( $!noIden && $noIden > 0 )
<tr>
<th colspan='2'>$i18n.getString( "identifier" )</th>
</tr>
@@ -198,7 +198,7 @@
$("#tabs").tabs("remove", 2);
#end
- #if( $noIden > 0 || $noOtherGroup > 0 || $noGroup > 0 )
+ #if( ( $noIden && $noIden > 0) || ( $noOtherGroup && $noOtherGroup > 0) || ( $noGroup && $noGroup > 0 ))
$( "#tabs" ).tabs( "option", "selected", 1 );
#else
$( "#tabs" ).tabs( "option", "selected", 2 );