【问题标题】:I want to change data table button name我想更改数据表按钮名称
【发布时间】:2019-08-20 09:35:46
【问题描述】:

我有excel 数据表按钮,我想更改该按钮的名称。 我正在尝试这样

$(document).ready(function() {
  $('#loading_sheet_table').DataTable({
    "paging": false,
    dom: 'Bfrtip',
    buttons: [
      {
        extend: 'excel',
        name: 'export to excel'
      }
    ]
  });
});

但名称没有改变,我想在名称后添加图标。

<i class="fa fa-file-excel-o" aria-hidden="true"></i>

【问题讨论】:

  • 试试text: 'export to excel'
  • @CarstenLøvboAndersen 如何在名称后添加图标
  • 试试 $("'#loading_sheet_table :button").append('' )
  • 类似text: 'export to excel&lt;i class="fa fa-file-excel-o" aria-hidden="true"&gt;&lt;/i&gt;'

标签: javascript php jquery codeigniter datatable


【解决方案1】:

你可以这样做得到想要的东西

$(document).ready(function() {
  $('#loading_sheet_table').DataTable({
    "paging": false,
    dom: 'Bfrtip',
    buttons: [
      {
        extend: 'excel',
        text: 'Export to excel',
        className: 'btn btn-default btn-xs'
      }
    ]
  });
});

我希望你可以使用这个类来设置你的图标样式。

【讨论】:

    猜你喜欢
    • 2022-01-18
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2017-06-19
    相关资源
    最近更新 更多