Commit 2be268a4 authored by alexey.musinov's avatar alexey.musinov

[mobile] у события для сортировки ячеек поменялся тип

parent 4dd46991
...@@ -6723,8 +6723,8 @@ function offline_apply_event(type,params) { ...@@ -6723,8 +6723,8 @@ function offline_apply_event(type,params) {
case 2040: // ASC_SPREADSHEETS_EVENT_TYPE_COLUMN_SORT_FILTER case 2040: // ASC_SPREADSHEETS_EVENT_TYPE_COLUMN_SORT_FILTER
{ {
if (params.length) { if (params.length) {
var typeF = params[0], cellId =''; var typeF = parseInt(params[0]), cellId = '';
if (2===params.length) if (2 === params.length)
cellId = params[1]; cellId = params[1];
_api.asc_sortColFilter(typeF, cellId); _api.asc_sortColFilter(typeF, cellId);
} }
......
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