フッタブル(モバイル、タブレットなどでテーブルをレスポンシブにするための jquery スクリプト) を使用していますが、問題があります。私のプロジェクトでは、すべての行の展開をタッチしてクリックする必要はありません。
通常、このコードで動作します:
<table class="footable">
<thead>
<tr>
<th data-class="expand">
First Name
</th>
<th>
Last Name
</th>
<th data-hide="phone,tablet">
Job Title
</th>
<th data-hide="phone,tablet">
DOB
</th>
<th data-hide="phone">
Status
</th>
</tr>
</thead>
$(function() { $('table').footable(); });
しかし、デフォルトですべての行を展開するにはどうすればよいですか?
jsfiddle のコード例