diff --git a/src/main/webapp/js/nlib.js b/src/main/webapp/js/nlib.js index 27a7e4e0..5c709160 100644 --- a/src/main/webapp/js/nlib.js +++ b/src/main/webapp/js/nlib.js @@ -147,6 +147,7 @@ function fn_isEmpty(value) { if(value == null) return true; if(typeof value == "undefined") return true; if(typeof value == "string" && value == "") return true; + if(value == "null") return true; if(Array.isArray(value) && value.length < 1) return true; return false;