dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #24377
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 11938: Change type of search identifier type field in person management to password type.
------------------------------------------------------------
revno: 11938
committer: Tran Chau <tran.hispvietnam@xxxxxxxxx>
branch nick: dhis2
timestamp: Fri 2013-09-06 02:08:09 +0700
message:
Change type of search identifier type field in person management to password type.
modified:
dhis-2/dhis-web/dhis-web-caseentry/src/main/webapp/dhis-web-caseentry/searchPatientCriteria.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/searchPatientCriteria.vm'
--- dhis-2/dhis-web/dhis-web-caseentry/src/main/webapp/dhis-web-caseentry/searchPatientCriteria.vm 2013-09-05 17:59:57 +0000
+++ dhis-2/dhis-web/dhis-web-caseentry/src/main/webapp/dhis-web-caseentry/searchPatientCriteria.vm 2013-09-05 19:08:09 +0000
@@ -119,13 +119,13 @@
<tr>
<td></td>
<td></td>
- <td name='addAndSearchBtn' rowspan='2' valign='bottom'>
+ <td name='addAndSearchBtn' rowspan='2' style='padding-top:5px;'>
<input type="button" class='normal-button' value='$i18n.getString( "add" )' onclick='addAttributeOption();'>
</td>
- <td name='addAndSearchBtn' rowspan='2' valign='bottom' align="right" >
+ <td name='addAndSearchBtn' rowspan='2' style='padding-top:5px;' align="right" >
<input type="button" class='normal-button' value='$i18n.getString( "search" )' onclick='validateAdvancedSearch();' id='searchPatientBtn'>
</td>
- <td name='addAndSearchBtn' rowspan='2' valign='bottom' align="right" >
+ <td name='addAndSearchBtn' rowspan='2' style='padding-top:5px;' align="right" >
<input type="button" class='normal-button hidden' id='sendSmsToListBtn' value="$i18n.getString('sms')" onclick="setFieldValue('sendToList', true);showSendSmsForm();" >
</td>
</tr>
@@ -150,8 +150,8 @@
<em title="$i18n.getString( 'required' )" class="required">*</em></label>
</td>
<td>
- <input type="text" id="searchText" name="searchText" value="$!searchText" onkeyup='searchPatientsOnKeyUp( event );' style='width:200px;'>
- <input type="button" class='normal-button' name="clearSearchBtn" value='$i18n.getString( "clear" )' onclick="removeAttributeOption('advSearchBox0');" >
+ <input type="password" id="searchText" name="searchText" value="$!searchText" onkeyup='searchPatientsOnKeyUp( event );' style='width:200px;'>
+ <input type="button" class='normal-button' name="clearSearchBtn" value='$i18n.getString( "clear" )' onclick="removeAttributeOption('advSearchBox0');" align='bottom'>
</td>
</tr>
</tbody>
@@ -173,7 +173,7 @@
datePicker( 'startDueDate', true );
datePicker( 'endDueDate', true );
- var searchTextBox = '<input type="text" id="searchText" name="searchText" onkeyup="searchPatientsOnKeyUp( event );" style="width:202px;">';
+ var searchTextBox = '<input type="password" id="searchText" name="searchText" onkeyup="searchPatientsOnKeyUp( event );" style="width:202px;">';
var programComboBox = '<select class="search-field" id="searchText" name="searchText" style="width:205px;">';
#foreach ( $program in $programs )
programComboBox += '<option value="$program.id">$program.displayName</option>';