Wicegrid 3.0.4的自定义样式

时间:2015-05-25 08:08:23

标签: ruby-on-rails wice-grid

我正在使用带有rails 3的wicegrid 3.0.4。我想做一个自定义样式。

我添加了

":html => {:style => 'text-align: center'} or html: {style: 'text-align: center'}" 

为:

g.column :column_name => "Name", :attribute_name => 'name', html: {style: 'text-align: center'}

它为我提供了"未知密钥:html"

如何添加自定义样式或类?

1 个答案:

答案 0 :(得分:0)

好的,在wicegrid 3.04的文档中得到了答案 Wicegrid 3.04 Doc

必须写为:

g.column :column_name => "Name", :attribute_name => 'name', :td_html_attrs => {:style => 'text-align: right'}

而不是 html:,需要写:td_html_attrs