> I need help here, I must admit I don't know what you are talking about.
> Where do you define a title? (A model example will be nice)
Ask an ye shall receive:
class Community(SQLObject):
shortname=StringCol(length=48, alternateID=True, title="Unique
Identifier")
name=StringCol(length=128, title="Community Name")
description=StringCol(title="HTML Description")
image=BoolCol(default=False, title="Has side image?")
links=MultipleJoin('CommunityLink')
class CommunityLink(SQLObject):
community=ForeignKey('Community')
title=StringCol(length=255, title="Link Title")
url=StringCol(length=255, title="Link URL")
description=StringCol(default=None, title="HTML Description")
> While you are at it let me tell you CW doesn't (yet) handle default
> values =(
[EMAIL PROTECTED]:
cls.sqlmeta.columns['fieldname'].default ? I'll give that a try anyway.