gpt4 book ai didi

grails - 使用Grails Fields插件增加f:field(输入)的大小(但不丢失DRY)

转载 作者:行者123 更新时间:2023-12-02 15:09:35 24 4
gpt4 key购买 nike

我要更改此:

这样:

Twitter Bootstrap使它变得容易。我们只需要添加:class="input-xxlarge"。但是,如果仅将其添加到f: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>

它可以工作,但现在不再干燥。有什么方法可以在不损失Grails Fields插件的DRY容量的情况下进行操作?

最佳答案

您应该使用input-class而不是class。阅读documentation一节:默认行为-使用Grails输入标签

关于grails - 使用Grails Fields插件增加f:field(输入)的大小(但不丢失DRY),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18691000/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com