dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #17842
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 7264: minor fixed to indicator type form
------------------------------------------------------------
revno: 7264
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Sun 2012-06-10 22:25:33 +0300
message:
minor fixed to indicator type form
modified:
dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/addIndicatorTypeForm.vm
dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/updateIndicatorTypeForm.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-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/addIndicatorTypeForm.vm'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/addIndicatorTypeForm.vm 2011-03-31 13:13:10 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/addIndicatorTypeForm.vm 2012-06-10 19:25:33 +0000
@@ -10,15 +10,15 @@
</tr>
<tr>
<td><label for="name">$i18n.getString( "name" ) <em title="$i18n.getString( 'required' )" class="required">*</em></label></td>
- <td><input type="text" id="name" name="name" style="width:20em"/></td>
+ <td><input type="text" id="name" name="name" style="width:250px;"/></td>
</tr>
<tr>
<td><label for="factor">$i18n.getString( "factor" ) <em title="$i18n.getString( 'required' )" class="required">*</em></label></td>
- <td><input type="text" id="factor" name="factor" style="width:20em"/></td>
+ <td><input type="text" id="factor" name="factor" style="width:250px;"/></td>
</tr>
<tr>
<td><label for="number">$i18n.getString( "number" ) <em title="$i18n.getString( 'required' )" class="required">*</em></label></td>
- <td><select id="number" name="number" style="width:20em" maxlength="10">
+ <td><select id="number" name="number" style="width:256px;" maxlength="10">
<option value='true'>$i18n.getString('yes')</option>
<option value='false' selected>$i18n.getString('no')</option>
</select>
@@ -26,7 +26,10 @@
</tr>
<tr>
<td></td>
- <td><input type="submit" value="$i18n.getString( 'add' )" style="width:10em"/><input type="button" value="$i18n.getString( 'cancel' )" onclick="window.location.href='indicatorType.action'" style="width:10em"/></td>
+ <td>
+ <input type="submit" value="$i18n.getString( 'add' )" style="width:10em" />
+ <input type="button" value="$i18n.getString( 'cancel' )" onclick="window.location.href='indicatorType.action'" style="width:10em" />
+ </td>
</tr>
</table>
=== modified file 'dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/updateIndicatorTypeForm.vm'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/updateIndicatorTypeForm.vm 2011-03-31 13:13:10 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/webapp/dhis-web-maintenance-datadictionary/updateIndicatorTypeForm.vm 2012-06-10 19:25:33 +0000
@@ -19,15 +19,15 @@
</tr>
<tr>
<td><label for="name">$i18n.getString( "name" ) <em title="$i18n.getString( 'required' )" class="required">*</em></label></td>
- <td><input type="text" id="name" name="name" value="$encoder.htmlEncode( $indicatorType.name )" style="width:20em"/> </td>
+ <td><input type="text" id="name" name="name" value="$encoder.htmlEncode( $indicatorType.name )" style="width:250px"/> </td>
</tr>
<tr>
<td><label for="factor">$i18n.getString( "factor" ) <em title="$i18n.getString( 'required' )" class="required">*</em></label></td>
- <td><input type="text" id="factor" name="factor" value="$indicatorType.factor" style="width:20em"/></td>
+ <td><input type="text" id="factor" name="factor" value="$indicatorType.factor" style="width:250px"/></td>
</tr>
<tr>
<td><label for="number">$i18n.getString( "number" ) <em title="$i18n.getString( 'required' )" class="required">*</em></label></td>
- <td><select id="number" name="number" style="width:20em" maxlength="10">
+ <td><select id="number" name="number" style="width:256px" maxlength="10">
<option value='true' #if($indicatorType.number=='true') selected #end>$i18n.getString('yes')</option>
<option value='false' #if($indicatorType.number=='false') selected #end>$i18n.getString('no')</option>
</select>
@@ -35,7 +35,10 @@
</tr>
<tr>
<td></td>
- <td><input type="submit" value="$i18n.getString( 'save' )" style="width:10em"/><input type="button" value="$i18n.getString( 'cancel' )" onclick="window.location.href='indicatorType.action'" style="width:10em"/></td>
+ <td>
+ <input type="submit" value="$i18n.getString( 'save' )" style="width:10em" />
+ <input type="button" value="$i18n.getString( 'cancel' )" onclick="window.location.href='indicatorType.action'" style="width:10em"/>
+ </td>
</tr>
</table>
</form>