mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-23 07:09:20 +01:00
not visible nextmatch will run refresh when it becomes visible again (not just ignoring it)
This commit is contained in:
parent
c28f980db3
commit
947c2f0462
@ -453,11 +453,19 @@ var et2_nextmatch = et2_DOMWidget.extend([et2_IResizeable, et2_IInput],
|
|||||||
*/
|
*/
|
||||||
refresh: function(_row_ids, _type) {
|
refresh: function(_row_ids, _type) {
|
||||||
// Framework trying to refresh, but nextmatch not fully initialized
|
// Framework trying to refresh, but nextmatch not fully initialized
|
||||||
if(this.controller === null || !this.div || !this.div.is(':visible'))
|
if(this.controller === null || !this.div)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (!this.div.is(':visible')) // run refresh, once we become visible again
|
||||||
|
{
|
||||||
|
$j(this.getInstanceManager().DOMContainer.parentNode).one('show.et2_nextmatch',
|
||||||
|
// Important to use anonymous function instead of just 'this.refresh' because
|
||||||
|
// of the parameters passed
|
||||||
|
jQuery.proxy(function() {this.refresh();},this)
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (typeof _type == 'undefined') _type = 'edit';
|
if (typeof _type == 'undefined') _type = 'edit';
|
||||||
if (typeof _row_ids == 'string' || typeof _row_ids == 'number') _row_ids = [_row_ids];
|
if (typeof _row_ids == 'string' || typeof _row_ids == 'number') _row_ids = [_row_ids];
|
||||||
if (typeof _row_ids == "undefined" || _row_ids === null)
|
if (typeof _row_ids == "undefined" || _row_ids === null)
|
||||||
|
Loading…
Reference in New Issue
Block a user