dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #19661
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 8677: remove delete function of outbox table
------------------------------------------------------------
revno: 8677
committer: Lai <lai.hispvietnam@xxxxxxxxx>
branch nick: dhis2
timestamp: Wed 2012-10-24 11:19:10 +0700
message:
remove delete function of outbox table
modified:
dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-mobile/src/main/webapp/dhis-web-maintenance-mobile/showSentSMSPage.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-maintenance/dhis-web-maintenance-mobile/src/main/webapp/dhis-web-maintenance-mobile/showSentSMSPage.vm'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-mobile/src/main/webapp/dhis-web-maintenance-mobile/showSentSMSPage.vm 2012-10-22 08:51:28 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-mobile/src/main/webapp/dhis-web-maintenance-mobile/showSentSMSPage.vm 2012-10-24 04:19:10 +0000
@@ -65,17 +65,16 @@
</script>
<h3>$i18n.getString( 'list_sent_SMS' )</h3>
<form id="sentSMSPage" name="sentSMSPage" action="showSentPage.action" method="post">
-<table border="0px" style="width:100%">
+<table border="0px" style="width:250px">
<tr>
<td style="width:90px">$i18n.getString('filter_by_status'):</td>
- <td style="width:200px">
+ <td style="width:160px">
<select id="statusType" style="width:100%;" onchange="filterByStatus(this.value)">
<option value="0" #if ( $!filterStatusType == 0 ) selected='selected' #end>$i18n.getString('outbound')</option>
<option value="1" #if ( $!filterStatusType == 1 ) selected='selected' #end>$i18n.getString('sent')</option>
<option value="2" #if ( $!filterStatusType == 2 ) selected='selected' #end>$i18n.getString('all')</option>
</select>
</td>
- <td style="text-align:right"><input type="button" name="btnDelete" value="$i18n.getString( 'delete_checked_option' )" onclick="deleteChecked()"/></td>
</tr>
<table>
<table id="detailsSentSMSList" class="listTable" style="width:100%">
@@ -86,7 +85,6 @@
<th>$i18n.getString( "receiver" )</th>
<th>$i18n.getString( "date" )</th>
<th>$i18n.getString( "status" )</th>
- <th style="text-align:center">$i18n.getString( "delete" )</th>
</thead>
<tbody id="sentSMS">
#foreach( $outboundSms in $listOutboundSMS)
@@ -97,7 +95,6 @@
<td>$outboundSms.recipients</td>
<td>$outboundSms.date</td>
<td>$outboundSms.status</td>
- <td style="text-align:center"><a href="javascript:removeSingleItem( '$outboundSms.id', '$outboundSms.message' )" title="$i18n.getString( 'remove' )"><img src="../images/delete.png" alt="$i18n.getString( 'remove' )"/></td>
</tr>
#end
</tbody>