我遇到了一个问题,我不知道最好的解释方法是什么。
我正在使用HTML 5创建一个动态表。作为它的动态,我正在形成一个循环,用于根据数据创建tr和td。
正在为一周中的每一天创建td。用户可以选择他想要查看的那一天,从而根据所选择的日期显示td。
我已经为tbody实现了滚动,因此使得thead和tbody都有'display:block'。因此,我给标题赋予了固定的宽度,现在我必须给列赋予固定的宽度以对齐它们。
现在,当我将宽度值赋给td时,我必须保留td宽度值之一,以便可以在td的其余部分强制执行宽度。因此,这个未分配的td具有太多的宽度。 如果我将宽度td全部放入,那么它们中没有一个具有我指定的宽度,整个表格不同步。
我将我的HTMl放在最后作为标题在循环中生成td的位置。如您所见,没有宽度分配给循环中的一个td。我正在使用bootstrap for css。请让我知道我在这段代码中做错了什么。很抱歉粘贴所有代码,因为我不认为我可以在小提琴中重现这个问题。
<table class="table table-hover table-striped table-condensed" >
<thead style="display:block;">
<tr>
<th rowspan="2"><div style="width:50px">@Helpers.SortableColumnHeader("Zip", actionName, BuyInfo.SortBy.Zip, new ListModel() { SortInfo = Model.RootSortInfo }, containerId, rvd, null, "Root")</div></th>
<th rowspan="2" class="text-right"><div style=" width:80px">@Helpers.SortableColumnHeader("Households", actionName, BuyInfo.SortBy.Households, new ListModel() { SortInfo = Model.RootSortInfo }, containerId, rvd, null, "Root")</div></th>
<th rowspan="2" class="text-right"><div style=" width:40px">@Helpers.SortableColumnHeader("Sales", actionName, BuyInfo.SortBy.Sales, new ListModel() { SortInfo = Model.RootSortInfo }, containerId, rvd, null, "Root")</div></th>
@if (!String.IsNullOrWhiteSpace(c.Client.MpiNames[0]))
{
<th rowspan="2" class="text-right"><div style=" width:50px">@Helpers.SortableColumnHeader(c.Client.MpiNames[0], actionName, BuyInfo.SortBy.Mpi1, new ListModel() { SortInfo = Model.RootSortInfo }, containerId, rvd, null, "Root")</div></th>
}
@if (!String.IsNullOrWhiteSpace(c.Client.MpiNames[1]))
{
<th rowspan="2" class="text-right"><div style=" width:50px">@Helpers.SortableColumnHeader(c.Client.MpiNames[1], actionName, BuyInfo.SortBy.Mpi2, new ListModel() { SortInfo = Model.RootSortInfo }, containerId, rvd, null, "Root")</div></th>
}
@if (!String.IsNullOrWhiteSpace(c.Client.MpiNames[2]))
{
<th rowspan="2" class="text-right"><div style=" width:50px">@Helpers.SortableColumnHeader(c.Client.MpiNames[2], actionName, BuyInfo.SortBy.Mpi3, new ListModel() { SortInfo = Model.RootSortInfo }, containerId, rvd, null, "Root")</div></th>
}
<th rowspan="2"><div style=" width:75px">@Helpers.SortableColumnHeader("Zone", actionName, BuyInfo.SortBy.Zone, Model, containerId, rvd)</div></th>
<th rowspan="2"><div style=" width:50px">@Helpers.SortableColumnHeader("NAPI", actionName, BuyInfo.SortBy.NapiId, Model, containerId, rvd)</div></th>
<th rowspan="2"><div style=" width:100px">@Helpers.SortableColumnHeader("Pub", actionName, BuyInfo.SortBy.Pub, Model, containerId, rvd)</div></th>
<th rowspan="2"><div style=" width:35px">@Helpers.SortableColumnHeader("Type", actionName, BuyInfo.SortBy.PubType, Model, containerId, rvd)</div></th>
@for (int d = 0; d < dows.Length; d++)
{
<th colspan="3" class="text-center"><div style=" width:162px">@dows[d].ToDisplayString()</div></th>
}
</tr>
<tr>
@for (int d = 0; d < dows.Length; d++)
{
<th class="text-right"><div style=" width:42px">@Helpers.SortableColumnHeader("Zip Circ", actionName, (BuyInfo.SortBy)Enum.Parse(typeof(BuyInfo.SortBy), dows[d].ToString()), Model, containerId, rvd)</div></th>
<th class="text-right"><div style=" width:50px">Zone Circ</div></th>
<th class="text-center"><div style=" width:70px">Buy</div></th>
}
</tr>
</thead>
<tbody style="display:block;
height: 500px;
overflow-y: auto;
/*width:auto;
table-layout:fixed*/">
@foreach (Zip zip in Model.PageList)
{
IComparer<Zone> comparer;
BuyInfo.SortBy sortBy = (BuyInfo.SortBy)Model.SortInfo.SortBy;
if (sortBy.ToString().EndsWith("day"))
{
DayOfWeek dow = (DayOfWeek)Enum.Parse(typeof(DayOfWeek), sortBy.ToString());
Dictionary<Zone, int> circs = new Dictionary<Zone, int>();
foreach (Zone zo in b[zip].Keys)
{
circs.Add(zo, b[zip][zo].ContainsKey(dow) ? b[zip][zo][dow] : 0);
}
comparer = BuyInfo.GetZoneComparer(sortBy, Model.SortInfo.SortForward, circs);
}
else
{
comparer = BuyInfo.GetZoneComparer(sortBy, Model.SortInfo.SortForward);
}
int sales = Model.SalesInfo.ContainsKey(zip.Id) ? Model.SalesInfo[zip.Id].Sales : 0;
SortedDictionary<Zone, SortedDictionary<DayOfWeek, int>> zones = new SortedDictionary<Zone, SortedDictionary<DayOfWeek, int>>(b[zip], comparer);
if (zones.Count == 0)
{
<tr class="zip">
<td><div style=" width:50px">@zip.Title</div></td>
<td class="text-right"><div style=" width:80px">@zip.Households.ToString("n0")</div></td>
<td class="text-right"><div style=" width:40px">@sales.ToString("c0")</div></td>
@MpiRows(c.Client, zip, 1)
<td colspan="@((dows.Length * 3) + 4)" class="text-center"><div style="width:@((dows.Length+4)*143)px">n/a</div></td>
</tr>
continue;
}
bool isFirstRow = true;
foreach (Zone zone in zones.Keys)
{
<tr class="@(isFirstRow ? "zip" : "")"; width="500px">
@if (isFirstRow)
{
<td rowspan="@zones.Count"><div style="width:50px">@zip.Title</div></td>
<td rowspan="@zones.Count" class="text-right"><div style="width:80px">@zip.Households.ToString("n0")</div></td>
<td rowspan="@zones.Count" class="text-right"><div style="width:40px">@sales.ToString("c0")</div></td>
@MpiRows(c.Client, zip, zones.Count)
isFirstRow = false;
}
<td style="width:85px;" class="text-left"><div style=" width:75px; display:block">@zone.Title</div></td>
<td style="width:60px;" class="text-left" ><div style=" width:50px; display:block">@zone.Pub.NapiId</div></td>
<td style="width:110px;" class="text-left">
<div style="width:100px; display:block">
<span>@zone.Pub.Title</span><br />
<span class="text-muted">@zone.Pub.Location</span>
@Ajax.ActionLink("mins", "GetMinBuys", "Pub", new { id = zone.Pub.Id },
new AjaxOptions { HttpMethod = "GET", InsertionMode = InsertionMode.Replace, UpdateTargetId = "min-buy-list-container", OnFailure = "alert('Error!');", OnSuccess = "showMinBuys(this);" }, new { @class = "btn btn-xs btn-default" })
</div>
</td>
<td class="text-left" style="width:45px"><div style="width:35px; display:block">@zone.Pub.Type</div></td>
@for (int d = 0; d < dows.Length; d++)
{
DayOfWeek dow = dows[d];
int zipCirc = zones[zone].ContainsKey(dow) ? zones[zone][dow] : 0;
int zoneCirc = zone.Circ != null ? (zone.Circ.ContainsKey(dow) ? zone.Circ[dow] : 0) : 0;
int households = zip.Households;
decimal penetration = households == 0 ? Decimal.Zero : (decimal)zipCirc / households;
int minBuy = zone.Pub.MinBuys.ContainsKey(dow) ? zone.Pub.MinBuys[dow] : 0;
int buy = zone.Buy != null ? (zone.Buy.ContainsKey(dow) ? zone.Buy[dow] : 0) : 0;
<td class="text-right" style="width:52px;">
<div style="width:42px; display:block">
@zipCirc<br />
<span class="text-muted">@penetration.ToString("p0")</span>
</div>
</td>
<td class="text-right" style="width:60px;">
<div style="width:50px; display:block">
@if (zoneCirc > 0)
{
<a class="zone-circ" href="#">@zoneCirc</a>
}
else
{
@zoneCirc
}
</div>
</td>
##<td class="text-right">##
<div style="width:70px; display:block">
@if (zoneCirc > 0)
{
string className = String.Empty;
if (buy > 0)
{
className = (buy >= minBuy) ? "min-met" : "min-not-met";
}
<input type="text" class="form-control input-sm min @(className)" placeholder="@minBuy" value="@(buy > 0 ? buy.ToString() : String.Empty)" data-campaign-id="@(c.Id)" data-zone-id="@(zone.Id)" data-dow-id="@((int)dow)" />
}
</div>
</td>
}
</tr>
}
}
@if (Model.List.Count == 0)
{
<tr>
<td colspan="4">No pubs exist for this campaign (check the search term).</td>
</tr>
}
</tbody>
jsfiddle用于渲染代码,没有宽度到一个td:jsfiddle.net/9psjobhc
答案 0 :(得分:0)
我找到了解决问题的方法。我只是循环了几天,并在循环的最后一天插入空白td。因此,td所需的空间在末尾分配,同步保持为需要。