作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经基于Easygrid petclinic示例应用程序中的示例创建了一个页面。
除了格式化程序/取消格式化外,其他所有东西都工作正常。
我有一个名为“key”的字段,标签为“date”,为,我试图根据此字段生成超链接。我注意到生成的页面忽略了此属性。
我正在分享controller and the gsp
在 Controller 中定义为
columns {
key{ label 'Date' }
<div id="grid-container" style="max-height:100%;overflow:auto;">
<grid:grid id='jqgridinitial' name="daily">
<grid:set width="2000" height="450">
<grid:set col="key" label="Date" formatter='f:customWikiFormat' unformat="f:wikiUnFormat"/>
{"searchoptions":{"clearSearch":false},"editable":false,"name":"key","search":null,"sortable":true,"label":"Date"
最佳答案
您的语法有点错误。父标记基本上是grid:grid,在其中可以设置不同的属性(通过使用grid:set)。
如果您未指定“col”,则将在实际网格上设置这些属性。
<grid:grid id='jqgridinitial' name="daily">
<grid:set width="2000" height="450"/>
<grid:set col="key" label="Date" width="100" formatter='f:customWikiFormat' unformat="f:wikiUnFormat"/>
</grid:grid>
关于grails - Easygrid自定义格式化程序,用于创建链接-未生成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24380692/
我有一个这样定义的网格: Controller : def invoicesJQGridGrid = { dataSourceType 'gorm' domainClass Invoi
我是一名优秀的程序员,十分优秀!