Hi,

I finally tracked down a big problem with datagrid. LzLazyReplicationManager needs a mask to work properly. However, the code in LzView to set this.mask was removed when sprites were added. By setting this.mask in two places I was able to get most of datagrid to work (a missing 'this' is also needed in LzLazyReplicationManager).

Is the solution more difficult than just making these two changes?

function makeMasked ( ){
    if (this.sprite) this.sprite.setClip(true);
    this.mask = this;  //PBR
}

function removeMask () {
    if (this.sprite) this.sprite.setClip(false);
    this.mask = null;  //PBR
}


Phil

Reply via email to