Commit 6559661c authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander.Trofimov

Добавлены элементы в класс

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@53288 954022d7-b5bf-4e40-9824-e11837661b57
parent 77047016
...@@ -2240,6 +2240,7 @@ function parserFormula( formula, _cellId, _ws ) { ...@@ -2240,6 +2240,7 @@ function parserFormula( formula, _cellId, _ws ) {
this.error = []; this.error = [];
this.Formula = formula; this.Formula = formula;
this.undoParser = {formula:null,outStack:[]}; this.undoParser = {formula:null,outStack:[]};
this.isParsed = false;
} }
parserFormula.prototype = { parserFormula.prototype = {
......
...@@ -4237,6 +4237,7 @@ function Cell(worksheet){ ...@@ -4237,6 +4237,7 @@ function Cell(worksheet){
this.oId = null; this.oId = null;
this.oFormulaExt = null; this.oFormulaExt = null;
this.sFormula = null; this.sFormula = null;
this.sFormulaCA = null;
this.formulaParsed = null; this.formulaParsed = null;
} }
Cell.prototype.getStyle=function(){ Cell.prototype.getStyle=function(){
...@@ -4821,7 +4822,7 @@ Cell.prototype.setValueData = function(Val){ ...@@ -4821,7 +4822,7 @@ Cell.prototype.setValueData = function(Val){
} }
Cell.prototype.setFormulaCA = function(ca){ Cell.prototype.setFormulaCA = function(ca){
if(ca) this.sFormulaCA = true; if(ca) this.sFormulaCA = true;
else if( this.sFormulaCA ) delete this.sFormulaCA; else if( this.sFormulaCA ) this.sFormulaCA = null;
} }
//------------------------------------------------------------------------------------------------- //-------------------------------------------------------------------------------------------------
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment