diff --git a/js/formular.js b/js/formular.js index 826acc4..8046a13 100755 --- a/js/formular.js +++ b/js/formular.js @@ -3848,8 +3848,15 @@ Formular = SpatialMap.Class ({ } } } - } + }, + paramHasValue: function (param) { + var curParam = this.currentParams[param]; + if (typeof curParam !== 'undefined' && curParam != null && curParam.length > 0) { + return true; + } + return false; + } });