[transfer-dev] Re: Removing / breaking relationships not working

2009-12-08 Thread Matthew
Hi all I've had another look at the Transfer wiki and I think what I'm trying to do is not possible. I'm wanting to delete the record which is a m2m relationship - Transfer doesn't do this. It appears to me that Transfer can only handle o2m and m2o relationships and all it does is set the FK to

Re: [transfer-dev] Re: Removing / breaking relationships not working

2009-12-08 Thread Matt Quackenbush
You would remove the relationship (e.g. foo.removeParentBar()), and then delete the item that you want to delete (e.g. transfer.delete(foo)). HTH -- Before posting questions to the group please read: http://groups.google.com/group/transfer-dev/web/how-to-ask-support-questions-on-transfer You

Re: [transfer-dev] Re: Removing / breaking relationships not working

2009-12-08 Thread Mark Mandel
What's wrong with Transfer.delete(myPagePanel) ? Mark On Wed, Dec 9, 2009 at 7:12 AM, Matt Quackenbush quackfu...@gmail.comwrote: You would remove the relationship (e.g. foo.removeParentBar()), and then delete the item that you want to delete (e.g. transfer.delete(foo)). HTH -- Before

Re: [transfer-dev] Re: Removing / breaking relationships not working

2009-12-08 Thread Matt Quackenbush
Or you could, of course, skip the removeParentBar() and cut right to the chase e... delete. :D On Tue, Dec 8, 2009 at 2:23 PM, Mark Mandel mark.man...@gmail.com wrote: What's wrong with Transfer.delete(myPagePanel) ? Mark -- Before posting questions to the group please read: