Hi drue,
there is another way of doing it which is fairly easy and quick to realize. The solution bases on the fact that your wrapper editor page has a unique ID within the Mambo database. Check the properties of your menu entry for your editor. You will see something like the following in the non-editable area of the properties:
Url: index.php?option=com_wrapper&Itemid=46
In this case the ID is 46. Now all you've got to do is open your template index.php page and search for the <td> tag of your right column. Around that tag you put this PHP code:
Code:
<?PHP if ( !($option=="com_wrapper" && $Itemid="46") ) { ?>
<td CLASS="right">
<table WIDTH="100%" BORDER="0" ALIGN="center" CELLPADDING="0" CELLSPACING="0">
<tr>
<td><?php mosLoadModules ( 'right' ); ?></td>
</tr>
</table>
</td>
<?PHP } ?>
Now the right column is only displayed if it is not your wrapped editor being called.
It works pretty well for me using
TeamCal Pro within Mambo.
Best regards,
Sundance