私は製品のデータを表示するために JQuery Mobile を使用しています。次のような人です。
<table data-role="table" id="products-vip" data-column-btn-theme="b" data-column-popup-theme="a" data-mode="columntoggle" class="ui-responsive" data-column-btn-text="See">
<thead>
<tr>
<-- <th> with table heads -->
</tr>
</thead>
<tbody>
@foreach(Product in Model)
{
<tr>
<-- <td> with info of Products-->
</tr>
}
</tbody>
</table>
テーブルは「columntoggle」です。
私の問題は、セルのコンテンツが画面の幅を超えていることです。たとえば、iOS ブラウザーでは、JQuery Mobile はコンテンツを切り捨て、ページを左または右に移動してコンテンツを表示できません。
コンテンツを切り捨てず、テーブルをレスポンシブにする、またはワードラップが示されているセルを作成するJQuery Mobileにどのように言えますか。
ありがとう!...