[SSE mobile] Fix Bug 49728
This commit is contained in:
parent
784909d517
commit
a910082c4c
|
@ -1147,6 +1147,10 @@ define([
|
||||||
config.msg = errData && errData.asc_getError() ? Common.Utils.String.htmlEncode(errData.asc_getError()) : this.errorDataValidate;
|
config.msg = errData && errData.asc_getError() ? Common.Utils.String.htmlEncode(errData.asc_getError()) : this.errorDataValidate;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case Asc.c_oAscError.ID.LockedCellPivot:
|
||||||
|
config.msg = this.errorLockedCellPivot;
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
config.msg = this.errorDefaultMessage.replace('%1', id);
|
config.msg = this.errorDefaultMessage.replace('%1', id);
|
||||||
break;
|
break;
|
||||||
|
@ -1188,6 +1192,7 @@ define([
|
||||||
config.buttons = [{ text: 'OK' }, { text: this.textCancel, onClick: config.callback }];
|
config.buttons = [{ text: 'OK' }, { text: this.textCancel, onClick: config.callback }];
|
||||||
} else {
|
} else {
|
||||||
config.buttons = [{ text: 'OK', onClick: config.callback }];
|
config.buttons = [{ text: 'OK', onClick: config.callback }];
|
||||||
|
$('#ce-cell-content').blur();
|
||||||
}
|
}
|
||||||
uiApp.modal({
|
uiApp.modal({
|
||||||
title : config.title,
|
title : config.title,
|
||||||
|
@ -1789,7 +1794,8 @@ define([
|
||||||
warnLicenseLimitedRenewed: 'License needs to be renewed.<br>You have a limited access to document editing functionality.<br>Please contact your administrator to get full access',
|
warnLicenseLimitedRenewed: 'License needs to be renewed.<br>You have a limited access to document editing functionality.<br>Please contact your administrator to get full access',
|
||||||
warnLicenseLimitedNoAccess: 'License expired.<br>You have no access to document editing functionality.<br>Please contact your administrator.',
|
warnLicenseLimitedNoAccess: 'License expired.<br>You have no access to document editing functionality.<br>Please contact your administrator.',
|
||||||
textGuest: 'Guest',
|
textGuest: 'Guest',
|
||||||
errorDataValidate: 'The value you entered is not valid.<br>A user has restricted values that can be entered into this cell.'
|
errorDataValidate: 'The value you entered is not valid.<br>A user has restricted values that can be entered into this cell.',
|
||||||
|
errorLockedCellPivot: 'You cannot change data inside a pivot table.'
|
||||||
}
|
}
|
||||||
})(), SSE.Controllers.Main || {}))
|
})(), SSE.Controllers.Main || {}))
|
||||||
});
|
});
|
|
@ -214,6 +214,8 @@
|
||||||
"SSE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download it until the connection is restored and page is reloaded.",
|
"SSE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download it until the connection is restored and page is reloaded.",
|
||||||
"SSE.Controllers.Main.errorWrongBracketsCount": "An error in the entered formula.<br>Wrong number of brackets is used.",
|
"SSE.Controllers.Main.errorWrongBracketsCount": "An error in the entered formula.<br>Wrong number of brackets is used.",
|
||||||
"SSE.Controllers.Main.errorWrongOperator": "An error in the entered formula. Wrong operator is used.<br>Please correct the error.",
|
"SSE.Controllers.Main.errorWrongOperator": "An error in the entered formula. Wrong operator is used.<br>Please correct the error.",
|
||||||
|
"SSE.Controllers.Main.errorDataValidate": "The value you entered is not valid.<br>A user has restricted values that can be entered into this cell.",
|
||||||
|
"SSE.Controllers.Main.errorLockedCellPivot": "You cannot change data inside a pivot table.",
|
||||||
"SSE.Controllers.Main.leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to await the autosave of the document. Click 'Leave this Page' to discard all the unsaved changes.",
|
"SSE.Controllers.Main.leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to await the autosave of the document. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||||
"SSE.Controllers.Main.loadFontsTextText": "Loading data...",
|
"SSE.Controllers.Main.loadFontsTextText": "Loading data...",
|
||||||
"SSE.Controllers.Main.loadFontsTitleText": "Loading Data",
|
"SSE.Controllers.Main.loadFontsTitleText": "Loading Data",
|
||||||
|
|
Loading…
Reference in a new issue