changed et2_core_inheritance.js to implement ClassWithAttributes extending Class from egw_inheritance and changed et2 objects to use ClassWithAttributes when required (also fixed lots of IDE warnings / added docu)

This commit is contained in:
Ralf Becker
2014-03-20 09:40:37 +00:00
parent f517b5786f
commit ac18b6cc8d
20 changed files with 295 additions and 571 deletions

View File

@ -24,14 +24,14 @@
* manage an external action object interface for each visible row and proxy all
* state changes between an dummy action object, that does no selection handling,
* and the external action object interface.
*
*
* @augments Class
*/
var et2_dataview_selectionManager = Class.extend(
{
/**
* Constructor
*
*
* @param _parent
* @param _indexMap
* @param _actionObjectManager
@ -214,10 +214,10 @@ var et2_dataview_selectionManager = Class.extend(
this.resetSelection();
this._selectAll = true;
// Tell action manager to do all
this._actionObjectManager.setAllSelected(true);
// Update the selection
for (var key in this._registeredRows)
{
@ -519,7 +519,7 @@ var et2_dataview_selectionManager = Class.extend(
// Query all unknown ranges from the server
for (var i = 0; i < queryRanges.length; i++)
{
this._queryRangeCallback.call(this._context, queryRanges[i],
this._queryRangeCallback.call(this._context, queryRanges[i],
function (_order) {
for (var j = 0; j < _order.length; j++)
{