I'm developing a web report (ASP.NET + BOOTSTRAP) and opening it on my mobile phone looks like this:
Wouldyouliketoresizetheselinestotheendortakeoutthesidelines,wouldthatbepossible?
Thecodelookslikethis:
@modelPagedList.IPagedList<RelatorioWEB.Models.VWRelVendasAnual>@{ViewBag.Title="Resumo de Vendas (Anual)";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<div class="panel panel-default">
<div class="panel-heading"><h4><b>Resumo de Vendas (Anual)</b></h4></div>
<div class="panel-body">
@*<div class="row">*@
<div class="col-md-12">
<table class="table">
<tr>
<th>Ano </th>
<th>Liquido </th>
<th>Custo </th>
<th>Desc. </th>
<th>Bruto </th>
<th>Lucro </th>
<th>Dinheiro </th>
<th>Cartao </th>
<th>Cheque </th>
<th>Crédito </th>
<th>Crediario </th>
<th>Ticket Med.</th>
</tr>
@foreach (var item in Model)
{
<tr>
<td>@Html.DisplayFor(modelItem => item.Ano)</td>
<td>@Html.DisplayFor(modelItem => item.Valor_Liquido)</td>
<td>@Html.DisplayFor(modelItem => item.Custo)</td>
<td>@Html.DisplayFor(modelItem => item.Desconto)</td>
<td>@Html.DisplayFor(modelItem => item.Valor_Bruto)</td>
<td>@Html.DisplayFor(modelItem => item.Lucro)</td>
<td>@Html.DisplayFor(modelItem => item.Dinheiro)</td>
<td>@Html.DisplayFor(modelItem => item.Cartao)</td>
<td>@Html.DisplayFor(modelItem => item.Cheque)</td>
<td>@Html.DisplayFor(modelItem => item.Crédito)</td>
<td>@Html.DisplayFor(modelItem => item.Crediario)</td>
<td>@Html.DisplayFor(modelItem => item.Ticket)</td>
</tr>
}
<tr>
<td><b>@Model.Count registos de @Model.TotalItemCount</b></td>
<td><a href="/Relatorios/RelVendasAnual?gerarPDF=true"><b>GERAR PDF</b></a></td>
</tr>
</table>
@*</div>*@
</div>
@{
if (Model.TotalItemCount != Model.Count)
{
<div class="row">
<div class="col-md-12">
Página @(Model.PageCount < Model.PageNumber ? 0 : Model.PageNumber) de @Model.PageCount
@if (Model.HasPreviousPage)
{
@Html.ActionLink("<<", "RelVendasAnual", new { pagina = 1, sortOrder = ViewBag.CurrentSort, currentFilter = ViewBag.CurrentFilter })
@Html.Raw(" ");
@Html.ActionLink("< Anterior", "RelVendasAnual", new { pagina = Model.PageNumber - 1, sortOrder = ViewBag.CurrentSort, currentFilter = ViewBag.CurrentFilter })
}
else
{
@:<<
@Html.Raw(" ");
@:< Anterior
}
@if (Model.HasNextPage)
{
@Html.ActionLink("Próxima >", "RelVendasAnual", new { pagina = Model.PageNumber + 1, sortOrder = ViewBag.CurrentSort, currentFilter = ViewBag.CurrentFilter })
@Html.Raw(" ");
@Html.ActionLink(">>", "RelVendasAnual", new { pagina = Model.PageCount, sortOrder = ViewBag.CurrentSort, currentFilter = ViewBag.CurrentFilter })
}
else
{
@:Próxima >
@Html.Raw(" ")
@:>>
}
</div>
</div>
}
}
</div>
</div>