Commit b3112279 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

ToDo делаем ссылки только для форматированной таблицы

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56865 954022d7-b5bf-4e40-9824-e11837661b57
parent f21d46fb
......@@ -6361,7 +6361,9 @@
WorksheetView.prototype.getSelectionRangeValue = function () {
// ToDo проблема с выбором целого столбца/строки
var ar = this.activeRange.clone(true);
ar.r1Abs = ar.c1Abs = ar.r2Abs = ar.c2Abs = true;
// ToDo делаем ссылки только для форматированной таблицы
if (c_oAscSelectionDialogType.FormatTable === this.selectionDialogType)
ar.r1Abs = ar.c1Abs = ar.r2Abs = ar.c2Abs = true;
var sName = ar.getName();
return (c_oAscSelectionDialogType.FormatTable === this.selectionDialogType) ? sName :
parserHelp.get3DRef(this.model.getName(), sName);
......
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