=== modified file 'dhis-2/dhis-web/dhis-web-dataentry/src/main/webapp/dhis-web-dataentry/javascript/form.js' --- dhis-2/dhis-web/dhis-web-dataentry/src/main/webapp/dhis-web-dataentry/javascript/form.js 2012-02-17 10:35:31 +0000 +++ dhis-2/dhis-web/dhis-web-dataentry/src/main/webapp/dhis-web-dataentry/javascript/form.js 2012-02-17 11:21:53 +0000 @@ -346,6 +346,8 @@ $( this ).focus( valueFocus ); + $( this ).blur( valueBlur ); + $( this ).change( function() { saveBoolean( dataElementId, optionComboId ); === modified file 'dhis-2/dhis-web/dhis-web-reporting/src/main/java/org/hisp/dhis/reporting/completeness/action/GetDataCompletenessAction.java' --- dhis-2/dhis-web/dhis-web-reporting/src/main/java/org/hisp/dhis/reporting/completeness/action/GetDataCompletenessAction.java 2011-12-26 10:07:59 +0000 +++ dhis-2/dhis-web/dhis-web-reporting/src/main/java/org/hisp/dhis/reporting/completeness/action/GetDataCompletenessAction.java 2012-02-17 11:21:53 +0000 @@ -212,8 +212,8 @@ OrganisationUnit unit, DataSet dataSet ) { String title = i18n.getString( "reporting_rate_summary" ); - String subtitle = (unit != null ? unit.getName() : EMPTY) + SPACE - + (dataSet != null ? dataSet.getName() : EMPTY); + String subtitle = ( unit != null ? unit.getName() : EMPTY ) + SPACE + + ( dataSet != null ? dataSet.getName() : EMPTY ); Grid grid = new ListGrid().setTitle( title ).setSubtitle( subtitle );