also clear cache if dialog is closed via close button
This commit is contained in:
parent
c4dcc423f6
commit
8185359061
2 changed files with 12 additions and 2 deletions
|
@ -167,7 +167,6 @@ pandora.ui.logsDialog = function() {
|
||||||
width: 48
|
width: 48
|
||||||
}).bindEvent({
|
}).bindEvent({
|
||||||
click: function() {
|
click: function() {
|
||||||
Ox.Request.clearCache('findLogs');
|
|
||||||
that.close();
|
that.close();
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -212,6 +211,12 @@ pandora.ui.logsDialog = function() {
|
||||||
})
|
})
|
||||||
.appendTo(that.$element.find('.OxButtonsbar'));
|
.appendTo(that.$element.find('.OxButtonsbar'));
|
||||||
|
|
||||||
|
that.superClose = that.close;
|
||||||
|
that.close = function() {
|
||||||
|
Ox.Request.clearCache('findLogs');
|
||||||
|
that.superClose();
|
||||||
|
};
|
||||||
|
|
||||||
function formatURL(url, line) {
|
function formatURL(url, line) {
|
||||||
return Ox.encodeHTMLEntities(url.split('?')[0]) + ':' + line;
|
return Ox.encodeHTMLEntities(url.split('?')[0]) + ':' + line;
|
||||||
}
|
}
|
||||||
|
|
|
@ -406,7 +406,6 @@ pandora.ui.usersDialog = function() {
|
||||||
width: 48
|
width: 48
|
||||||
}).bindEvent({
|
}).bindEvent({
|
||||||
click: function() {
|
click: function() {
|
||||||
Ox.Request.clearCache('findUsers');
|
|
||||||
that.close();
|
that.close();
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -439,6 +438,12 @@ pandora.ui.usersDialog = function() {
|
||||||
})
|
})
|
||||||
.appendTo(that.$element.find('.OxButtonsbar'));
|
.appendTo(that.$element.find('.OxButtonsbar'));
|
||||||
|
|
||||||
|
that.superClose = that.close;
|
||||||
|
that.close = function() {
|
||||||
|
Ox.Request.clearCache('findUsers');
|
||||||
|
that.superClose();
|
||||||
|
};
|
||||||
|
|
||||||
function getFormItemById(id) {
|
function getFormItemById(id) {
|
||||||
var ret;
|
var ret;
|
||||||
Ox.forEach((
|
Ox.forEach((
|
||||||
|
|
Loading…
Reference in a new issue