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

Добавил в апи asc_endFindText (для окончания поиска, чтобы сбросить найденные...

Добавил в апи asc_endFindText (для окончания поиска, чтобы сбросить найденные ячейки для поиска по книге)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@55535 954022d7-b5bf-4e40-9824-e11837661b57
parent 78d30343
......@@ -2304,6 +2304,11 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS";
this.wb.replaceCellText(temp);
},
asc_endFindText: function () {
// Нужно очистить поиск
this.wb._cleanFindResults();
},
/**
* Делает активной указанную ячейку
* @param {String} reference Ссылка на ячейку вида A1 или R1C1
......@@ -3633,6 +3638,7 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS";
prot["asc_searchEnabled"] = prot.asc_searchEnabled;
prot["asc_findText"] = prot.asc_findText;
prot["asc_replaceText"] = prot.asc_replaceText;
prot["asc_endFindText"] = prot.asc_endFindText;
prot["asc_findCell"] = prot.asc_findCell;
//prot["asc_openCellEditor"] = prot.asc_openCellEditor; - не используется (и не стоит так делать)
prot["asc_closeCellEditor"] = prot.asc_closeCellEditor;
......
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