From ee843a5f021b0984292bd60ac3602546b83aa6b4 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 28 Aug 2013 12:50:49 +0000 Subject: [PATCH] can not set undefined from server side, only null, therefore allowing that as argument for id in egw_refresh --- etemplate/js/et2_extension_nextmatch.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etemplate/js/et2_extension_nextmatch.js b/etemplate/js/et2_extension_nextmatch.js index bb43eae8c2..2977fbf953 100644 --- a/etemplate/js/et2_extension_nextmatch.js +++ b/etemplate/js/et2_extension_nextmatch.js @@ -420,7 +420,7 @@ var et2_nextmatch = et2_DOMWidget.extend([et2_IResizeable, et2_IInput], refresh: function(_row_ids, _type) { if (typeof _type == 'undefined') _type = 'edit'; if (typeof _row_ids == 'string' || typeof _row_ids == 'number') _row_ids = [_row_ids]; - if (typeof _row_ids == "undefined") + if (typeof _row_ids == "undefined" || _row_ids === null) { this.applyFilters(); return;