mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:36 +01:00
Avoid errors about missing methods, running out of stack space - probably a missing file...
This commit is contained in:
parent
4a08f033e7
commit
215ccc2709
@ -81,13 +81,13 @@ var et2_dataview_controller = Class.extend({
|
||||
this._grid.setDataCallback(this._gridCallback, this);
|
||||
|
||||
// Create the selection manager
|
||||
this._selectionMgr = new et2_dataview_selectionManager(this._indexMap);
|
||||
// this._selectionMgr = new et2_dataview_selectionManager(this._indexMap);
|
||||
},
|
||||
|
||||
destroy: function () {
|
||||
|
||||
// Destroy the selection manager
|
||||
this._selectionMgr.free();
|
||||
// this._selectionMgr.free();
|
||||
|
||||
// Clear the selection timeout
|
||||
this._clearTimer();
|
||||
@ -473,7 +473,7 @@ var et2_dataview_controller = Class.extend({
|
||||
ao.updateActionLinks(links);
|
||||
|
||||
// Hook the row into the selection manager
|
||||
this.self._selectionMgr.hook(ao, aoi, this.entry.uid);
|
||||
// this.self._selectionMgr.hook(ao, aoi, this.entry.uid);
|
||||
}
|
||||
|
||||
// Invalidate the current row entry
|
||||
|
@ -89,10 +89,11 @@ var et2_nextmatch_controller = et2_dataview_controller.extend(
|
||||
if (this._actionManager)
|
||||
{
|
||||
this._objectManager.clear();
|
||||
this._actionManager.clear();
|
||||
// TODO: No such method. Maybe implement it?
|
||||
//this._actionManager.clear();
|
||||
}
|
||||
|
||||
this._super();
|
||||
//this._super();
|
||||
},
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user