From dd1a960d37558dc6e758035544f7d87f151c0e51 Mon Sep 17 00:00:00 2001 From: Alvaro Campos Date: Tue, 27 Mar 2012 18:51:25 -0400 Subject: [PATCH] BUG 8782 No esta realizando la multiplicacion dentro de grilla SOLVED - No esta realizando la multiplicacion dentro de grillas, esto ocurre en IE, FF, Chrome, Safari - Se soluciono este problema. en gulliver/grid.js --- gulliver/js/grid/core/grid.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gulliver/js/grid/core/grid.js b/gulliver/js/grid/core/grid.js index 326d586ca..574f63780 100755 --- a/gulliver/js/grid/core/grid.js +++ b/gulliver/js/grid/core/grid.js @@ -494,11 +494,11 @@ var G_Grid = function(oForm, sGridName){ if (this.aFunctions.length > 0) { this.assignFunctions(this.aFunctions, 'change', currentRow); } -/* + if (this.aFormulas.length > 0) { this.assignFormulas(this.aFormulas, 'change', currentRow); } -*/ + //Recalculate functions if are declared var oAux; if (this.aFunctions.length > 0) { @@ -855,7 +855,7 @@ var G_Grid = function(oForm, sGridName){ //////////////////////////////////////////////////////////////////////////////////////////// this.setFormulas = function(aFormulas) { this.aFormulas = aFormulas; -// this.assignFormulas(this.aFormulas, 'change'); + this.assignFormulas(this.aFormulas, 'change'); }; /////////////////////////////////////////////////////////////////////////////////////////////