Rails中带有数据表的打字头

时间:2019-01-02 23:28:21

标签: jquery ajax datatables typeahead

我正在使用Ajax Datatables gem来显示我的产品型号索引。

目前,我认为这是

<table id="products-datatable" data-source="<%= products_path(format: :json) %>">
    <thead>
        <tr>
            <th>Product Name</th>
             <th>Brand</th>
             <th>Price</th>
        </tr>
     </thead>
     <tbody></tbody>
</table>

它在桌子上的显示效果非常好,但是具有:
产品名称-第1列
品牌-第2栏
价格-第3列

我只希望有一个带有顶部搜索框的列。用户可以使用产品名称,品牌和价格进行搜索。 我想显示如下结果:

<div>
    <p>Product Name</p>
    <p>Brand</p>
    <p>Price</p>
</div>

我该怎么做?

0 个答案:

没有答案