0

默认情况下,在 Grails 中,安装 Twitter Bootstrap 插件(及其依赖项:fields 插件)后,view/packagename/show.gsp 是这样的:

当前节目

我如何使用 Bootstrap ( Glyphs Icons ) 来显示如下内容:

想要秀

注意:我实际上会使用Font Awesome,但我写了 Bootstrap 来简化问题,因为它应该是相似的。

更新:这是一段布尔/逻辑属性的代码:

<g:if test="${safariInstance?.animalsAllowed}">
    <dt><g:message code="safari.animalsAllowed.label" default="Allow animals" /></dt>       
    <dd><g:formatBoolean boolean="${safariInstance?.animalsAllowed}" /></dd>        
</g:if>
4

1 回答 1

2

你可以用不同的方式来解决这个问题,一个例子是:

...      
<td><i class="${safariInstance?.animalsAllowed?'icon-ok':'icon-remove'}" ></i> </td> 
...

您还需要删除您的 '< g:if>' 块以查看 false 和 true 选项。

于 2013-07-12T00:43:57.167 回答