我想改变这个:
由此:
Twitter Bootstrap让它变得简单。我们只需添加:class="input-xxlarge"
。但是如果我们只是将它添加到f:字段,它就不起作用:
<f:field bean="bestInstance" property="honor" class="input-xxlarge"/>
到目前为止,解决方案是复制使用f:字段生成的源代码并添加它。这是结果代码(添加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容量的情况下做到这一点?