Commit 7406ca30 authored by Dmitry.Shahtanov's avatar Dmitry.Shahtanov Committed by Alexander.Trofimov

fixed:

Bug 24794 - Формулы с абсолютными ссылками на ячейки не пересчитываются при изменении данных в них

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56656 954022d7-b5bf-4e40-9824-e11837661b57
parent a6804998
......@@ -3801,7 +3801,7 @@ parserFormula.prototype = {
if ( (ref instanceof cRef || ref instanceof cRef3D || ref instanceof cArea) && ref.isValid() ) {
var nTo = this.wb.dependencyFormulas.addNode( ref.getWsId(), ref._cells );
var nTo = this.wb.dependencyFormulas.addNode( ref.getWsId(), ref._cells.replace( /\$/g, "" ) );
ref.setNode( nTo );
......
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