如何将文本换行包装到jquery数据表上?

时间:2019-04-09 09:57:16

标签: jquery laravel datatables

我正在尝试在数据表的帮助下显示一些长文本,但是不知何故它没有被包装。这意味着我不会得到多行文本,而只是得到一长行。当我进入数据库并编辑描述字段(字段类型为文本)时,可以看到多行文本。

我已经尝试过将表格的宽度固定为100%,但是文本行一直在表格之外。我还尝试添加自动换行和自动换行,并在CSS上定义了文本自动换行类,但是它也不起作用。

任何想法我该如何解决?

  <div style="font-size:18px;">
    <table class="table-striped table-hover" id="product_table" cellspacing="0" width="100%">
      <thead>
        <tr>
          <th>Name</th>
          <th>Group</th>
          <th>Price</th>
          <th>Action</th>
          <th class="none">Description DE</th>
          <th class="none">Description EN</th>
          <th class="none">Description ES</th>
        </tr>
      </thead>
      <tbody>
        @foreach($ProductList as $product)
        <tr>
          <td>{{$product['ProductName']}}</td>
          <td>{{$product['ProductGroupName']}}</td>
          <td>{{$product['ProductListPrice']}}</td>
          <td ><button class="btn btn-primary waves-effect w-md waves-light w-sm-5" data-toggle="modal" data-target="#Edit" data-id="{{$product['ProductID']}}" data-name="{{$product['ProductName']}}" data-group="{{$product['ProductGroupName']}}"
              data-price="{{$product['ProductListPrice']}}" data-descde="{{$product['ProductDescriptionDE']}}" data-descen="{{$product['ProductDescriptionEN']}}" data-desces="{{$product['ProductDescriptionES']}}">Edit</button>
          <td>{{$product['ProductDescriptionDE']}}</td>
          <td>{{$product['ProductDescriptionEN']}}</td>
          <td>{{$product['ProductDescriptionES']}}</td>
          </td>
        </tr>
        @endforeach
      </tbody>
    </table>
  </div>

  <script type="text/javascript">
    $(document).ready(function() {
      $('#product_table').DataTable({
        columnDefs: [{
          "className": "dt-center",
          "targets": "_all"
        }],
        pageLength: 50,
        responsive: true
      });
    });
  </script>

2 个答案:

答案 0 :(得分:1)

尝试在表中添加wrap类。

<table class="table-striped table-hover wrap" id="product_table" cellspacing="0" width="100%">

https://datatables.net/forums/discussion/43760/force-datatable-to-wrap-text#Comment_115199

答案 1 :(得分:0)

没关系,我发现了我的错误。 CSS类不正确。班级应该是这样的:

.text-wrap{
    white-space:normal;
}