dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #19319
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 8371: Minor fix.
------------------------------------------------------------
revno: 8371
committer: Tran Chau <tran.hispvietnam@xxxxxxxxx>
branch nick: dhis2
timestamp: Thu 2012-10-04 11:31:33 +0700
message:
Minor fix.
modified:
dhis-2/dhis-web/dhis-web-caseentry/src/main/webapp/dhis-web-caseentry/javascript/commons.js
dhis-2/dhis-web/dhis-web-caseentry/src/main/webapp/dhis-web-caseentry/javascript/entry.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-caseentry/src/main/webapp/dhis-web-caseentry/javascript/commons.js'
--- dhis-2/dhis-web/dhis-web-caseentry/src/main/webapp/dhis-web-caseentry/javascript/commons.js 2012-10-02 08:45:45 +0000
+++ dhis-2/dhis-web/dhis-web-caseentry/src/main/webapp/dhis-web-caseentry/javascript/commons.js 2012-10-04 04:31:33 +0000
@@ -698,7 +698,7 @@
{
var box = jQuery('#ps_' + programStageInstanceId );
box.attr('dueDate', dueDate );
- var boxName = box.attr('psname') + getInnerHTML('enterKey') + dueDate;
+ var boxName = box.attr('psname') + "\n" + dueDate;
box.val( boxName );
if( dueDate < getCurrentDate() )
{
=== modified file 'dhis-2/dhis-web/dhis-web-caseentry/src/main/webapp/dhis-web-caseentry/javascript/entry.js'
--- dhis-2/dhis-web/dhis-web-caseentry/src/main/webapp/dhis-web-caseentry/javascript/entry.js 2012-09-25 02:08:39 +0000
+++ dhis-2/dhis-web/dhis-web-caseentry/src/main/webapp/dhis-web-caseentry/javascript/entry.js 2012-10-04 04:31:33 +0000
@@ -442,7 +442,7 @@
success: function( result ){
var selectedProgramStageInstance = jQuery( '#' + prefixId + getFieldValue('programStageInstanceId') );
var box = jQuery(".stage-object-selected");
- var boxName = box.attr('psname') + getInnerHTML('enterKey') + executionDate;
+ var boxName = box.attr('psname') + "\n" + executionDate;
box.val( boxName );
box.css('border-color', COLOR_LIGHTRED);
box.css('background-color', COLOR_LIGHT_LIGHTRED);