mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-20 12:58:46 +01:00
Fixed problem with building new templates failing after nextmatch-widget has been used
This commit is contained in:
parent
37dc6545cc
commit
ea346ce19c
@ -53,6 +53,8 @@ var et2_dataview_dataProvider = Class.extend(et2_IDataProvider, {
|
|||||||
{
|
{
|
||||||
window.clearTimeout(this._queueFlushTimeout);
|
window.clearTimeout(this._queueFlushTimeout);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this._super();
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -66,8 +68,6 @@ var et2_dataview_dataProvider = Class.extend(et2_IDataProvider, {
|
|||||||
// Make sure _idx is a int
|
// Make sure _idx is a int
|
||||||
_idx = parseInt(_idx);
|
_idx = parseInt(_idx);
|
||||||
|
|
||||||
et2_debug("log", "--> registering row", _idx);
|
|
||||||
|
|
||||||
if (typeof this._registeredRows[_idx] != "undefined")
|
if (typeof this._registeredRows[_idx] != "undefined")
|
||||||
{
|
{
|
||||||
et2_debug("warn", "Overriding data row for index " + _idx);
|
et2_debug("warn", "Overriding data row for index " + _idx);
|
||||||
@ -92,8 +92,6 @@ var et2_dataview_dataProvider = Class.extend(et2_IDataProvider, {
|
|||||||
// Make sure _idx is a int
|
// Make sure _idx is a int
|
||||||
_idx = parseInt(_idx);
|
_idx = parseInt(_idx);
|
||||||
|
|
||||||
et2_debug("log", "<-- unregistering row", _idx);
|
|
||||||
|
|
||||||
delete(this._registeredRows[_idx]);
|
delete(this._registeredRows[_idx]);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user