该表包含大量列,这样当浏览器恢复时,最后一列对用户是不可见的。我想在表格的底部添加一个水平滚动条,以便用户可以拖动它并查看最后一列。
<div class="col-md-12 well">
<div id="double-scroll">
<table id="dataGrid" class="dataGrid display dataTable" cellspacing="0" width="100%">
<thead>
<tr>
<th style="display:none;"> </th>
<th>{{ Lang::get('messages.Event_Name') }} </th>
<th>{{ Lang::get('messages.organization_name') }}</th>
<th>{{ Lang::get('messages.Event_Start_Date') }} </th>
<th>{{ Lang::get('messages.Event_End_Date') }} </th>
<th>{{ Lang::get('messages.Event_Start_Time') }} </th>
<th>{{ Lang::get('messages.Event_End_Time') }} </th>
<th>{{ Lang::get('messages.Event_Location') }} </th>
<th>{{ Lang::get('messages.Event_Venue') }} </th>
<th>{{ Lang::get('messages.Event_Url') }} </th>
<th>{{ Lang::get('messages.Created_Date') }} </th>
<th> </th>
<th> </th>
<th> </th>
</tr>
</thead>
<tfoot>
<tr>
<th style="display:none;"> </th>
<th>{{ Lang::get('messages.Event_Name') }} </th>
<th>{{ Lang::get('messages.organization_name') }}</th>
<th>{{ Lang::get('messages.Event_Start_Date') }} </th>
<th>{{ Lang::get('messages.Event_End_Date') }} </th>
<th>{{ Lang::get('messages.Event_Start_Time') }} </th>
<th>{{ Lang::get('messages.Event_End_Time') }} </th>
<th>{{ Lang::get('messages.Event_Location') }} </th>
<th>{{ Lang::get('messages.Event_Venue') }} </th>
<th>{{ Lang::get('messages.Event_Url') }} </th>
<th>{{ Lang::get('messages.Created_Date') }} </th>
<th> </th>
<th> </th>
<th> </th>
</tr>
</tfoot>
<tbody id="mailTableBody">
@foreach ($liveEvents as $value)
<tr role="row" class="odd">
<td style="display:none;" class="sorting_1">{{ $value->id }}</td>
<td>{{ $value->eventName }}</td>
<td>{{ $value->organizationName }}</td>
<td>{{ $value->startDate }}</td>
<td>{{ $value->endDate }}</td>
<td>{{ $value->startTime }}</td>
<td>{{ $value->endTime }}</td>
<td>{{ $value->location }}</td>
<td>{{ $value->Venue }}</td>
<td><a class="btn btn-danger" style ="height: 32px;" href="{{ $value->publicURL }}" >{{Lang::get('messages.register')}}</a></td>
<td>{{ $value->created_at }}</td>
<td><button onclick="watchnow(this)" class="btn btn-success" style ="width: 150px; float: right" >{{Lang::get('messages.watchnow')}}</button></td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
答案 0 :(得分:0)
你在下面添加css代码:
<style type="text/css">
#double-scroll {
overflow:scroll
}
</style>
请在<head>
注意:如果你想支持旧的浏览器,请在最新版本的浏览器上支持overflow-x和overflow-y,即你需要使用overflow:scroll
答案 1 :(得分:0)
添加此样式:
#datagrid{
overflow-x: scroll;
}
答案 2 :(得分:0)
找到最佳答案..
<style type="text/css">
#double-scroll { overflow: auto; overflow-y: hidden; }
#double-scroll p { margin: 0; padding: 1em; white-space: nowrap; }
</style>