Roundup Tracker - Issues

Message1358

Author larse
Recipients
Date 2004-07-16.08:05:58
Message-id
In-reply-to
Hi,

I've extended the default "issue" schema with a few new
multilinks that I'm trying to set with the default
classhelp template, e.g.

    author = Class(db, "author",
                   authorname=String(),               
      
                   address=String(),    realname=String(),
                   phone=String(),     
organisation=String(),
                   alternate_addresses=String())
    author.setkey("authorname")

and then in issue.item.html

<tr>
  <th>Authors</th>
  <td colspan=3>
  <span tal:replace="structure
python:context.authors.field(size=60)" />
  <span tal:replace="structure
python:db.author.classhelp('authorname,realname,address',
property='authors', width='600')" />
 </td>
</tr>

This doesn't seem to work. While the contents of the
list are fine, clicking checkboxes doesn't update the
preview, and applying does nothing.

Even stranger, classhelp right now only works for the
"nosy" field, not even the "superseder" default one.

I'm kind of at a loss here, any ideas what I should be
looking at?

Thanks,

Lars
History
Date User Action Args
2009-02-03 14:20:51adminlinkissue992166 messages
2009-02-03 14:20:51admincreate