Commit 75731697 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@55339 954022d7-b5bf-4e40-9824-e11837661b57
parent 9d1b20e3
......@@ -9992,7 +9992,7 @@
cell = this.model._getCellNoEmpty(row, col);
if (cell) {
value = cell.getValue();
if (!objValues.hasOwnProperty(value)) {
if (!isNumber(value) && !objValues.hasOwnProperty(value)) {
arrValues.push(value);
objValues[value] = 1;
}
......
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