From caff8c14d7135e4479f4f2032b06c7ded5fc5986 Mon Sep 17 00:00:00 2001 From: Hugh Messenger Date: Sun, 26 Oct 2014 13:06:33 -0500 Subject: [PATCH] Fix in list.js for updateCals(), we were looking for wrong class for calculation cells, so calculations wouldn't update after an AJAX nav/filter. --- media/com_fabrik/js/list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media/com_fabrik/js/list.js b/media/com_fabrik/js/list.js index 789abecab23..3246caa7312 100644 --- a/media/com_fabrik/js/list.js +++ b/media/com_fabrik/js/list.js @@ -1240,7 +1240,7 @@ var FbList = new Class({ this.form.getElements('.fabrik_calculations').each(function (c) { types.each(function (type) { $H(json[type]).each(function (val, key) { - var target = c.getElement('.fabrik_row___' + key); + var target = c.getElement('.' + key); if (typeOf(target) !== 'null') { target.set('html', val); }