HI,
It looks like dhtmlXGrid_splt.js is missing the destructor function. Something like this should be added, right?
this.destructorA = this.destructor;
this.destructor=function(){
this.destructorA();
this._fake.destructor();
}
Ooops, that doesn’t work since _fake reference will already be null…this.destructorA() needs to be called after this._fake.destructor(). The below works, and it fixed a problem I had when trying to regenerate an existing tree grid:
this.destructorA = this.destructor;
this.destructor=function(){
this._fake.destructor();
this.destructorA();
}