Added onWarning event to api.
This commit is contained in:
parent
d184c3f647
commit
697785ff23
|
@ -170,7 +170,8 @@
|
||||||
'onAppReady': <application ready callback>,
|
'onAppReady': <application ready callback>,
|
||||||
'onBack': <back to folder callback>,
|
'onBack': <back to folder callback>,
|
||||||
'onError': <error callback>,
|
'onError': <error callback>,
|
||||||
'onDocumentReady': <document ready callback>
|
'onDocumentReady': <document ready callback>,
|
||||||
|
'onWarning': <warning callback>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -189,6 +189,16 @@ if (Common === undefined) {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
reportWarning: function(code, description) {
|
||||||
|
_postMessage({
|
||||||
|
event: 'onWarning',
|
||||||
|
data: {
|
||||||
|
warningCode: code,
|
||||||
|
warningDescription: description
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
sendInfo: function(info) {
|
sendInfo: function(info) {
|
||||||
_postMessage({
|
_postMessage({
|
||||||
event: 'onInfo',
|
event: 'onInfo',
|
||||||
|
|
|
@ -398,6 +398,8 @@ var ApplicationController = new(function(){
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Common.Gateway.reportWarning(id, message);
|
||||||
|
|
||||||
$('#id-critical-error-title').text(me.notcriticalErrorTitle);
|
$('#id-critical-error-title').text(me.notcriticalErrorTitle);
|
||||||
$('#id-critical-error-message').text(message);
|
$('#id-critical-error-message').text(message);
|
||||||
$('#id-critical-error-close').off();
|
$('#id-critical-error-close').off();
|
||||||
|
|
|
@ -1340,6 +1340,8 @@ define([
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Common.Gateway.reportWarning(id, config.msg);
|
||||||
|
|
||||||
config.title = this.notcriticalErrorTitle;
|
config.title = this.notcriticalErrorTitle;
|
||||||
config.iconCls = 'warn';
|
config.iconCls = 'warn';
|
||||||
config.buttons = ['ok'];
|
config.buttons = ['ok'];
|
||||||
|
|
|
@ -866,6 +866,8 @@ define([
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Common.Gateway.reportWarning(id, config.msg);
|
||||||
|
|
||||||
config.title = this.notcriticalErrorTitle;
|
config.title = this.notcriticalErrorTitle;
|
||||||
config.callback = _.bind(function(btn){
|
config.callback = _.bind(function(btn){
|
||||||
if (id == Asc.c_oAscError.ID.Warning && btn == 'ok' && (this.appOptions.canDownload || this.appOptions.canDownloadOrigin)) {
|
if (id == Asc.c_oAscError.ID.Warning && btn == 'ok' && (this.appOptions.canDownload || this.appOptions.canDownloadOrigin)) {
|
||||||
|
|
|
@ -497,6 +497,8 @@ var ApplicationController = new(function(){
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Common.Gateway.reportWarning(id, message);
|
||||||
|
|
||||||
$('#id-critical-error-title').text(me.notcriticalErrorTitle);
|
$('#id-critical-error-title').text(me.notcriticalErrorTitle);
|
||||||
$('#id-critical-error-message').text(message);
|
$('#id-critical-error-message').text(message);
|
||||||
$('#id-critical-error-close').off();
|
$('#id-critical-error-close').off();
|
||||||
|
|
|
@ -1099,6 +1099,8 @@ define([
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Common.Gateway.reportWarning(id, config.msg);
|
||||||
|
|
||||||
config.title = this.notcriticalErrorTitle;
|
config.title = this.notcriticalErrorTitle;
|
||||||
config.iconCls = 'warn';
|
config.iconCls = 'warn';
|
||||||
config.buttons = ['ok'];
|
config.buttons = ['ok'];
|
||||||
|
|
|
@ -821,6 +821,8 @@ define([
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Common.Gateway.reportWarning(id, config.msg);
|
||||||
|
|
||||||
config.title = this.notcriticalErrorTitle;
|
config.title = this.notcriticalErrorTitle;
|
||||||
config.callback = _.bind(function(btn){
|
config.callback = _.bind(function(btn){
|
||||||
if (id == Asc.c_oAscError.ID.Warning && btn == 'ok' && (this.appOptions.canDownload || this.appOptions.canDownloadOrigin)) {
|
if (id == Asc.c_oAscError.ID.Warning && btn == 'ok' && (this.appOptions.canDownload || this.appOptions.canDownloadOrigin)) {
|
||||||
|
|
|
@ -405,6 +405,8 @@ var ApplicationController = new(function(){
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Common.Gateway.reportWarning(id, message);
|
||||||
|
|
||||||
$('#id-critical-error-title').text(me.notcriticalErrorTitle);
|
$('#id-critical-error-title').text(me.notcriticalErrorTitle);
|
||||||
$('#id-critical-error-message').text(message);
|
$('#id-critical-error-message').text(message);
|
||||||
$('#id-critical-error-close').off();
|
$('#id-critical-error-close').off();
|
||||||
|
|
|
@ -1256,6 +1256,8 @@ define([
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Common.Gateway.reportWarning(id, config.msg);
|
||||||
|
|
||||||
config.title = this.notcriticalErrorTitle;
|
config.title = this.notcriticalErrorTitle;
|
||||||
config.iconCls = 'warn';
|
config.iconCls = 'warn';
|
||||||
config.buttons = ['ok'];
|
config.buttons = ['ok'];
|
||||||
|
|
|
@ -962,6 +962,8 @@ define([
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Common.Gateway.reportWarning(id, config.msg);
|
||||||
|
|
||||||
config.title = this.notcriticalErrorTitle;
|
config.title = this.notcriticalErrorTitle;
|
||||||
// config.iconCls = 'warn';
|
// config.iconCls = 'warn';
|
||||||
// config.buttons = ['ok'];
|
// config.buttons = ['ok'];
|
||||||
|
|
Loading…
Reference in a new issue