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

Для диаграмм возвращаем с учетом листа, для форматированной таблицы - без листа.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56803 954022d7-b5bf-4e40-9824-e11837661b57
parent d6c6035a
......@@ -6360,9 +6360,9 @@
WorksheetView.prototype.getSelectionRangeValue = function () {
// ToDo стоит добавлять $ и проблема с выбором целого столбца/строки
var sListName = this.model.getName();
var tmpRange = this.activeRange.clone(true);
return sListName + "!" + tmpRange.getName();
var sName = this.activeRange.clone(true).getName();
return (c_oAscSelectionDialogType.FormatTable === this.selectionDialogType) ? sName :
parserHelp.get3DRef(this.model.getName(), sName);
};
WorksheetView.prototype.getSelectionInfo = function (bExt) {
......
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