I cannot seem to add items to the list.
For example:
class User
...
friends = RelatedJoin("User", joinColumn="user_id")
And then when I try to do this, nothign happens (no errors, no change
to the DB):
>thisUserObj.friends.append(newUserObj)
I also tried this which complained that addUser wasn't defined...
>thisUserObj.friends.addUser(newUserObj)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/turbogears
-~----------~----~----~----~------~----~------~--~---