dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #30544
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 15505: Small change UI of Tracked entity attributes displayed in list form.
------------------------------------------------------------
revno: 15505
committer: Tran Chau <tran.hispvietnam@xxxxxxxxx>
branch nick: dhis2
timestamp: Mon 2014-06-02 08:06:57 +0800
message:
Small change UI of Tracked entity attributes displayed in list form.
modified:
dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-program/src/main/webapp/dhis-web-maintenance-program/attributeInListNoProgram.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-program/src/main/webapp/dhis-web-maintenance-program/attributeInListNoProgram.vm'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-program/src/main/webapp/dhis-web-maintenance-program/attributeInListNoProgram.vm 2014-05-30 08:04:25 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-program/src/main/webapp/dhis-web-maintenance-program/attributeInListNoProgram.vm 2014-06-02 00:06:57 +0000
@@ -17,9 +17,9 @@
<table>
<colgroup>
- <col style='width:300px'/>
+ <col style='width:500px'/>
<col/>
- <col style='width:300px'/>
+ <col style='width:500px'/>
</colgroup>
<tr>
<th>$i18n.getString( "availableAttribute" )</th>
@@ -32,7 +32,7 @@
<tr>
<td>
- <select style='width:322px' multiple="multiple" id="availableAttributes" name="availableAttributes" size="15" ondblclick="moveSelectedById( 'availableAttributes', 'selectedAttributeIds' )" >
+ <select style="height:200px; width:100%;" multiple="multiple" id="availableAttributes" name="availableAttributes" size="15" ondblclick="moveSelectedById( 'availableAttributes', 'selectedAttributeIds' )" >
#foreach($attribute in $availableAttributes)
<option value='$attribute.id'>$attribute.displayName</option>
#end
@@ -45,7 +45,7 @@
<input type="button" value="<<" onclick="moveAllById( 'selectedAttributeIds', 'availableAttributes' )" class='filterButton' />
</td>
<td>
- <select style='width:322px' multiple="multiple" id="selectedAttributeIds" name="selectedAttributeIds" size="15" ondblclick="moveSelectedById( 'selectedAttributeIds', 'availableAttributes' )" >
+ <select style="height:200px;width:100%;" multiple="multiple" id="selectedAttributeIds" name="selectedAttributeIds" size="15" ondblclick="moveSelectedById( 'selectedAttributeIds', 'availableAttributes' )" >
#foreach($attribute in $selectedAttributes)
<option value='$attribute.id'>$attribute.displayName</option>
#end