0

我想改变这个:

1

这样:

2

Twitter Bootstrap 让它变得简单。我们只需要添加:class="input-xxlarge". 但是如果我们只是将它添加到 af:field 中,它就不起作用了:

<f:field bean="bestInstance" property="honor" class="input-xxlarge"/>

到目前为止的解决方案是复制使用 f:field 生成的源代码并添加它。这是结果代码(添加后class="input-xxlarge):

<f:field bean="bestInstance" property="honor">
    <input class="input-xxlarge" type="text" name="direccion" value="" required="" maxlength="100" id="direccion" />
</f:field>

它可以工作,但它不再是 DRY 了。有没有办法在不失去 Grails Fields Plugin 的 DRY 容量的情况下做到这一点?

4

1 回答 1

2

您应该使用input-class而不是class. 阅读文档,部分:默认行为 - 使用 Grails 输入标签

于 2013-09-09T08:03:05.990 回答