dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #12065
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 3600: Minor fix
------------------------------------------------------------
revno: 3600
committer: Lars Helge Overland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Thu 2011-05-12 15:22:44 +0200
message:
Minor fix
modified:
dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-dataset/src/main/webapp/dhis-web-maintenance-dataset/javascript/viewDataEntryForm.js
--
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-dataset/src/main/webapp/dhis-web-maintenance-dataset/javascript/viewDataEntryForm.js'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-dataset/src/main/webapp/dhis-web-maintenance-dataset/javascript/viewDataEntryForm.js 2011-05-12 12:29:13 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-dataset/src/main/webapp/dhis-web-maintenance-dataset/javascript/viewDataEntryForm.js 2011-05-12 13:22:44 +0000
@@ -152,7 +152,7 @@
if( $option.length !== 0 ) {
var id = $option.data("id");
var title = $option.val();
- var template = '<input id="indicator' + id + '" value="[ ' + title + ' ]" title="' + title + '" name="indicator" indicatorid="' + id + '" style="width:10em;text-align:center;" readonly="readonly" />';
+ var template = '<input id="indicator' + id + '" value="[ ' + title + ' ]" title="' + title + '" name="indicator" indicatorid="' + id + '" style="width:7em;text-align:center;" readonly="readonly" />';
if(!checkExisted("indicator" + id)) {
oEditor.insertHtml( template )
@@ -191,13 +191,13 @@
id = boolDataEntryId;
html = "<input title=\"" + titleValue
+ "\" value=\"" + displayName + "\" id=\"" + boolDataEntryId
- + "\" style=\"width:10em;text-align:center\"/>";
+ + "\" style=\"width:7em;text-align:center\"/>";
}
else {
id = dataEntryId;
html = "<input title=\"" + titleValue
+ "\" value=\"" + displayName + "\" id=\"" + dataEntryId
- + "\" style=\"width:10em;text-align:center\"/>";
+ + "\" style=\"width:7em;text-align:center\"/>";
}
if (!checkExisted(id)) {