1

最初我的这段代码是有效的,它显示了多列的行。

class testForm():

    def __init__(self, *args, **kwargs):

        self.helper = FormHelper()
        self.helper.form_method = 'POST'
        self.helper.form_class= ''
        self.helper.layout = Layout(
                Row('user', 'time', 'source'),
                Row('location', 'summary'),

            )
        save_button = Submit('save', 'Save11')
        save_button.field_classes = 'btn-primary btn-large'
        self.helper.add_input(save_button)

但现在它不起作用并在单独的行中显示所有列,而不是在一行中组合列

4

1 回答 1

0

我认为您需要更改代码的css。默认情况下,您不会以表格形式获得它。它们将堆叠在一起。

只需定义它们的宽度或尝试使用float:left

于 2013-01-14T05:33:48.523 回答