Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/418.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 如何使用引导表导出扩展_Javascript_Ruby On Rails_Bootstrap Table - Fatal编程技术网

Javascript 如何使用引导表导出扩展

Javascript 如何使用引导表导出扩展,javascript,ruby-on-rails,bootstrap-table,Javascript,Ruby On Rails,Bootstrap Table,我有一张桌子要出口。我无意中发现了bootstrap table,觉得它很棒,所以我开始使用一些东西。分页,搜索,其他工作,太好了!但我不知道如何让该死的导出扩展工作!我在github上搜索论坛、博客和文档已经有很长时间了。不管怎样,这就是我要说的 我跑 npm install bootstrap-table 然后,我在我的标题中添加了行,并在我的正文中添加了一个来自此示例的脚本:现在,我的index.html.erb如下所示: <head> <meta charset="u

我有一张桌子要出口。我无意中发现了bootstrap table,觉得它很棒,所以我开始使用一些东西。分页,搜索,其他工作,太好了!但我不知道如何让该死的导出扩展工作!我在github上搜索论坛、博客和文档已经有很长时间了。不管怎样,这就是我要说的

我跑

npm install bootstrap-table
然后,我在我的标题中添加了行,并在我的正文中添加了一个来自此示例的脚本:现在,我的index.html.erb如下所示:

<head>
<meta charset="utf-8">
<link rel="stylesheet" href="../assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="../assets/bootstrap-table/src/bootstrap-table.css">
<link rel="stylesheet" href="../assets/examples.css">
<script src="../assets/jquery.min.js"></script>
<script src="../assets/bootstrap/js/bootstrap.min.js"></script>
<script src="../assets/bootstrap-table/src/bootstrap-table.js"></script>
<script src="../assets/bootstrap-table/src/extensions/export/bootstrap-table-export.js"></script>
<script src="//rawgit.com/hhurz/tableExport.jquery.plugin/master/tableExport.js"></script>
<script src="../ga.js"></script>
</head>
<body>


<div class="container">

    <div id="toolbar">
        <select class="form-control">
            <option value="">Export Basic</option>
            <option value="all">Export All</option>
            <option value="selected">Export Selected</option>
        </select>
    </div>
<div class="booyah-box">
<table id="table" 
       data-toggle="table"
       data-show-export="true"
       data-pagination="true"
       data-click-to-select="true"
       data-toolbar="#toolbar"
       data-url="../json/data1.json"
       data-page-list="[10, 25, 50, 100, ALL]"
       data-search="true"
       data-show-pagination-switch="true"
       data-show-columns="true"
       data-minimum-count-columns="2"
>

<thead>
  <tr>
    <th data-field="state" data-checkbox="true">Select</th>
    <th data-field="Project ID">Project ID</th>
    <th data-field="Status">Status</th>
    <th data-field="Project Type">Project Type</th>
    <th data-field="Marker Strategy">Marker Strategy</th>
    <th data-field="Traits">Traits</th>
    <th data-field="Line">Line</th>
    <th data-field="Line Origin">Line Origin</th>
    <th data-field="Market Region">Market Region</th>
    <th data-field="Governance Qualifier">Governance Qualifier</th>
    <th data-field="New Start Year">New Start Year</th>
    <th data-field="Initial Version Test Year">Initial Version Test Year</th>
    <th data-field="Estimated Version Test Year">Estimated Version Test Year</th>
    <th data-field="Last Location">Last Location</th>
    <th data-field="Trait Code">Trait Code</th>
    <th data-field="CMS Subtype/Type">CMS Subtype/Type</th>
    <th data-field="NEIS">NEIS</th>
    <th data-field="Root ID1">Root ID1</th>
    <th data-field="Root ID2">Root ID2</th>
  </tr>
</thead>


<tbody>
    <% @tiprojects.each do |x| %>
      <tr>
        <td></td>
        <td><%= x.pidtc %></td>
        <td><%= x.status %></td>
        <td><%= x.protype %></td>
        <td><%= x.marker_strategy %></td>
        <td><%= x.traits.upcase %></td>
        <td><%= x.line %></td>
        <td><%= x.origin %></td>
        <td><%= x.market_region.upcase %></td>
        <td><%= x.governance_qualifier %></td>
        <td><%= x.new_start_year %></td>
        <% if x.initial_vt_year == 9999 %>
        <td>Not Applicable</td>
        <% else %>
        <td><%= x.initial_vt_year %></td>
        <% end %>
        <td><%= x.estimated_vt_year %></td>
        <td>NA</td>
        <td><%= x.trait_code %></td>
        <td><%= x.cms_subtype %></td>
        <td><%= x.neis %></td>
        <td><%= x.root_pidtc1 %></td>
        <td><%= x.root_pidtc2 %></td>
      <% end %></tr>
    </tbody>
  </table>
<br />
<% if current_user.admin? %>
<%= link_to "Download Template Upload", download_csv_path %>
<br />
<%= form_tag import_ti_projects_path, multipart: true do %>
  <%= file_field_tag :file %><br />
  <%= submit_tag "Upload New Projects" %>
<% end %>
<% end %>
</div>
<script>
var $table = $('#table');
$(function () {
    $('#toolbar').find('select').change(function () {
        $table.bootstrapTable('destroy').bootstrapTable({
            exportDataType: $(this).val()
            showExport: 'true'

        });
    });
})

</script>

</body>

基本出口
全部导出
导出选定的
挑选
项目ID
地位
项目类型
标记策略
特点
线
线原点
市场区域
治理限定符
新开始的一年
初始版本测试年
预计版本测试年
最后位置
特征码
CMS亚型/类型
奈斯
根ID1
根ID2
不适用
NA



var$table=$(“#table”); $(函数(){ $('toolbar')。查找('select')。更改(函数(){ $table.bootstrapTable('destroy').bootstrapTable({ exportDataType:$(this).val() showExport:'真实' }); }); })
我刚刚做了一个JSFIDLE,研究了导出的一些问题。 这可能对你有帮助


基本出口
全部导出
导出选定的
身份证件
名称
价格

我的有点不同,我有一件事是刷新选项,而不是在$table.bootstrapTable('destroy').bootstrapTable中销毁({

实际发生了什么?是“导出”菜单没有显示,还是…?在我的情况下,除了“导出数据类型”选项外,其他一切都正常工作。它不会刷新或更改更改工具栏选择框的值的选项设置。我会在所有情况下导出所有行(即基本、全部和选定)。可能是什么问题。我尝试使用refreshOptions并同时销毁这两个选项,但都不起作用
        <div id="toolbar">
  <select class="form-control">
    <option value="">Export Basic</option>
    <option value="all">Export All</option>
    <option value="selected">Export Selected</option>
  </select>
</div>
<table id="table"
       data-toggle="table"
       data-toolbar="#toolbar"
       data-show-export="true"
       data-pagination="true"
       data-maintain-selected="true"
       data-page-size="5"
       data-page-list="[5, 25, 50, 100, ALL]"
       data-url="/gh/get/response.json/wenzhixin/bootstrap-table/tree/master/docs/data/data2/"
       data-export-options='{
         "fileName": "test", 
         "ignoreColumn": ["state"]
       }'
       >
    <thead>
    <tr>
        <th data-field="state" data-checkbox="true"></th>
        <th data-field="id">ID</th>
        <th data-field="name">Name</th>
        <th data-field="price">Price</th>
    </tr>
    </thead>
</table>