For instance, I might have the following code:

class book(SQLObject):
        name = StringCol()
        pages = MultipleJoin("page",joinColumn='page_id')

class page(SQLObject):
        name = StringCol()
        book = ForeignKey("book")

in ModelDesigner when you select the page table and hover over the book
*column* the drag handle would appear next to the book *table*

Robin Munn wrote:
> On 1/14/06, Richard (koorb) <[EMAIL PROTECTED]> wrote:
> >
> > As trac wont let me post a new ticket I'll mention it here.
> >
> > If you have a field that has the same name as a table, as you mouse
> > over the field the drag handle appears next to the table instead
>
> When you say "the same name", do you mean the same ID attribute? The
> spec says the ID attribute must be unique within a document, so if
> that's what you're doing, I wouldn't be surprised to find more than
> just the drag-handle code getting confused... Or do you mean a
> different attribute, like "name=..."?
> 
> --
> Robin Munn
> [EMAIL PROTECTED]
> GPG key 0xD6497014

Reply via email to