问题:
如何使用值预填充 ToscaWidgets 中的 CheckBoxTable。
背景:
我到处寻找,似乎无法弄清楚如何使用 ToscaWidgets 初始化特定的表单字段。大多数表单字段似乎对初始化的响应都很好,例如当我在模板中呈现表单并传入 fieldValue=x 时,如果我创建一个包含单个 TextField 的表单,其中 fieldValue 是 TextField 的名称,x 是一些字符串TextField 将用 x 填充。我的问题是所有多选字段,特别是 CheckBoxTable。无论我传入什么,它都不会初始化多选。这是我正在谈论的一个示例,它是一个用户编辑页面,其中包含一个用于组的 CheckBoxTable,因此您可以从从数据库中获取的多个组的列表中选择多个组或不选择组:
是)我有的:
我的小部件是:
from tw import forms
class UserForm(forms.TableForm):
show_errors = True
submit_text = "Create User"
clientOptions = [(-1, "Select a Client")]
groupOptions = [(-1, "Select a Group")]
fields = [forms.TextField('name', label_text='User Name', validator=String(not_empty=True), size=40),
forms.Spacer(),
forms.SingleSelectField('clientID', label_text='Client Name', validator=Int(min=0), options=clientOptions),
forms.Spacer(),
forms.CheckBoxTable('groups', lable_text='Groups', validator=Set(), options=groupOptions, num_cols=3),
forms.Spacer(),
forms.PasswordField('password', label_text="Password", validator=String(not_empty=True, min=6), size=40),
forms.PasswordField('passwordAgain', label_text="Repeat Password", validator=String(not_empty=True, min=6), size=40),
forms.HiddenField('id')]
editUserForm = UserForm("createUserForm", action='alterUser', submit_text="Edit User")
在我的控制器中,我有:
result = model.DBSession.query(model.User).filter_by(id=kw['id']).first()
tmpl_context.form = editUserForm
clientOptions=model.DBSession.query(model.Client.id, model.Client.name)
groupOptions=model.DBSession.query(model.Group.id, model.Group.name)
formChildArgs = dict(clientID=dict(options=clientOptions), groups=dict(options=groupOptions))
userAttributes=dict(id=result.id, name=result.name, groups=[g.id for g in result.groups], clientID=result.clientID, password=result.password, passwordAgain=result.password)
return dict(verb="Edit", modelName = "User", modelAttributes=userAttributes, formChildArgs=formChildArgs, page='editUser')
在我的模板(Mako)中,我有:
${tmpl_context.form(modelAttributes, child_args=formChildArgs) | n}
我试过的:
在我的 userAttributs 字典中,我尝试过:
groups=[g.id for g in result.groups]
groups=[g.name for g in result.groups]
groups=[(g.id, g.name) for g in result.groups]
groups=[[g.id, g.name) for g in result.groups]
groups=result.groups
我得到什么:
所有这些代码的结果是一个用户编辑表单,其中的数据预先填充了用户数据,但 CheckBoxTable 除外。CheckBoxTable 让我的数据库中的所有组都显示并为空,我需要它们显示但检查用户所在的组。我认为模型属性中的代码会这样做,因为这就是它对所有其他字段所做的事情,但是关于 CheckBoxTable 实例化,我必须缺少一些基本的东西。
眼镜:
我将 Turbogears 2 与 ToscaWidgets 0.9.7 表单和 Mako 一起用于模板。