I would know if it is possible to do something like this with a Rails wice grid plugin:
<g.column do |model| %>
<ul class='list-inline'>
<li>
<%= link_to model_path( model ), :title => 'See' do %>
<i class="glyphicon glyphicon-eye-open"></i>
<% end %>
</li>
<!-- ... -->
</ul>
< end -%>
Is it possible for a wice grid column to contain an HTML <ul>
tag?