dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #20095
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 9048: added safeEach method to handle null/undefined arrays (in $.each)
------------------------------------------------------------
revno: 9048
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Thu 2012-11-15 14:17:17 +0100
message:
added safeEach method to handle null/undefined arrays (in $.each)
modified:
dhis-2/dhis-web/dhis-web-dataentry/src/main/webapp/dhis-web-dataentry/javascript/form.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-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-11-15 11:17:51 +0000
+++ dhis-2/dhis-web/dhis-web-dataentry/src/main/webapp/dhis-web-dataentry/javascript/form.js 2012-11-15 13:17:17 +0000
@@ -70,6 +70,14 @@
var EVENT_FORM_LOADED = "dhis-web-dataentry-form-loaded";
+(function( $ ) {
+ $.safeEach = function( arr, fn ) {
+ if( arr ) {
+ $.each( arr, fn );
+ }
+ };
+})( jQuery );
+
/**
* Page init. The order of events is:
*
@@ -727,7 +735,7 @@
var dataSetList = [];
- $.each(orgUnitDataSets, function(idx, item) {
+ $.safeEach(orgUnitDataSets, function(idx, item) {
var dataSetId = orgUnitDataSets[idx];
var dataSetName = dataSets[dataSetId].name;
@@ -749,17 +757,17 @@
{
var dataSetList = [];
- $.each(orgUnits, function(idx, item) {
+ $.safeEach(orgUnits, function(idx, item) {
dataSetList.push.apply( dataSetList, getSortedDataSetList(item) )
});
var filteredDataSetList = [];
- $.each(dataSetList, function(idx, item) {
+ $.safeEach(dataSetList, function(idx, item) {
var formType = dataSets[item.id].type;
var found = false;
- $.each(filteredDataSetList, function(i, el) {
+ $.safeEach(filteredDataSetList, function(i, el) {
if(item.name == el.name)
found = true;
@@ -799,7 +807,7 @@
var dataSetValid = false;
- $.each(dataSetList, function(idx, item) {
+ $.safeEach(dataSetList, function(idx, item) {
addOptionById( 'selectedDataSetId', item.id, item.name );
if ( dataSetId == item.id )
@@ -816,7 +824,7 @@
{
$('#selectedDataSetId').append('<optgroup label=' + i18n_childrens_forms + '>');
- $.each(childrenDataSets, function(idx, item) {
+ $.safeEach(childrenDataSets, function(idx, item) {
$('<option />').attr('data-multiorg', true).attr('value', item.id).html(item.name).appendTo('#selectedDataSetId');
});
@@ -880,7 +888,7 @@
addOptionById( 'selectedPeriodId', '-1', '[ ' + i18n_select_period + ' ]' );
- $.each(periods, function(idx, item) {
+ $.safeEach(periods, function(idx, item) {
addOptionById( 'selectedPeriodId', item.id, item.name );
});
}
@@ -914,7 +922,7 @@
addOptionById( 'selectedPeriodId', '-1', '[ ' + i18n_select_period + ' ]' );
- $.each(periods, function(idx, item) {
+ $.safeEach(periods, function(idx, item) {
addOptionById( 'selectedPeriodId', item.id, item.name );
});
@@ -1043,7 +1051,7 @@
// Set data values, works for selects too as data value=select value
- $.each( json.dataValues, function( i, value )
+ $.safeEach( json.dataValues, function( i, value )
{
var fieldId = '#' + value.id + '-val';
@@ -1098,7 +1106,7 @@
// Set min-max values and colorize violation fields
- $.each( json.minMaxDataElements, function( i, value )
+ $.safeEach( json.minMaxDataElements, function( i, value )
{
var minId = value.id + '-min';
var maxId = value.id + '-max';
@@ -1544,7 +1552,7 @@
{
var formIds = storageManager.getAllForms();
- $.each(formIds, function(idx, item) {
+ $.safeEach(formIds, function(idx, item) {
if ( dataSets[item] == null )
{
storageManager.deleteForm( item );
@@ -1561,7 +1569,7 @@
var formIds = storageManager.getAllForms();
var formVersions = storageManager.getAllFormVersions();
- $.each(formIds, function(idx, item) {
+ $.safeEach(formIds, function(idx, item) {
var remoteVersion = dataSets[item].version;
var localVersion = formVersions[item];
@@ -1574,7 +1582,7 @@
function downloadRemoteForms()
{
- $.each(dataSets, function(idx, item) {
+ $.safeEach(dataSets, function(idx, item) {
var remoteVersion = item.version;
if ( !storageManager.formExists( idx ) && !item.skipOffline )