if the view that is being replicated has a name, that name never gets bound in the parent to point to the replicator.
There is also a bug that the replication manager is constructed twice in pooled case. But replication will still appear
to work...
On 10/30/06,
Philip Romanik <[EMAIL PROTECTED]> wrote:
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
--
Henry Minsky
Software Architect
[EMAIL PROTECTED]
