PranKe01
6 Jan 2010, 7:22 AM
Ext version tested:
Ext 3.1
Adapter used:
ext-air
Browser versions tested against:
Adobe Air
Description:
In ext-air-debug.js on line 1559 the function remove is called, which calls the function deleteBy. The deleteBy function does not exist.
Steps to reproduce the problem:
Call the function remove.
The result that was expected:
Remove some entries.
The result that occurs instead:
Error - function not defined.
Possible fix:
Change
remove : function(clause){
this.deleteBy(clause, null);
},
to
remove : function(clause){
this.removeBy(clause, null);
},
Ext 3.1
Adapter used:
ext-air
Browser versions tested against:
Adobe Air
Description:
In ext-air-debug.js on line 1559 the function remove is called, which calls the function deleteBy. The deleteBy function does not exist.
Steps to reproduce the problem:
Call the function remove.
The result that was expected:
Remove some entries.
The result that occurs instead:
Error - function not defined.
Possible fix:
Change
remove : function(clause){
this.deleteBy(clause, null);
},
to
remove : function(clause){
this.removeBy(clause, null);
},