mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-26 12:51:52 +02:00
default refresh method for jdots, if no nextmatch available
This commit is contained in:
parent
20632a0422
commit
61e98b8149
@ -714,11 +714,16 @@ etemplate2.prototype.getValues = function(_root)
|
|||||||
etemplate2.prototype.refresh = function(msg, app, id, type)
|
etemplate2.prototype.refresh = function(msg, app, id, type)
|
||||||
{
|
{
|
||||||
msg, app; // unused but required by function signature
|
msg, app; // unused but required by function signature
|
||||||
|
var refresh_done = false;
|
||||||
|
|
||||||
// Refresh nextmatches
|
// Refresh nextmatches
|
||||||
this.widgetContainer.iterateOver(function(_widget) {
|
this.widgetContainer.iterateOver(function(_widget) {
|
||||||
// Trigger refresh
|
// Trigger refresh
|
||||||
_widget.refresh(id,type);
|
_widget.refresh(id,type);
|
||||||
|
refresh_done = true;
|
||||||
}, this, et2_nextmatch);
|
}, this, et2_nextmatch);
|
||||||
|
|
||||||
|
return refresh_done;
|
||||||
};
|
};
|
||||||
|
|
||||||
// Some static things to make getting into widget context a little easier //
|
// Some static things to make getting into widget context a little easier //
|
||||||
|
Loading…
x
Reference in New Issue
Block a user