1
我使用https://mottie.github.io/tablesorter/docs/index.html的Tablesorter插件,我在MVC Razor視圖中具有下表。Tablesorter 2.0插件和表與嵌套的HTML
@foreach (var item in Model.Products)
{
decimal? vatValue = (item.UnitPrice * item.Quantity) * 0.2M;
decimal? goodsValue = (item.UnitPrice * item.Quantity);
<tr>
<td class="product-title" data-thumbnail="/_includes/img/uploads/product-thumb.jpg"><span>@item.ProductName</span>
</td>
<td class="product-id">
<span class="hl">Product code: </span>
@item.ProductCode
</td>
<td class="price">£@item.UnitPrice
<small class="hl">unit price</small>
</td>
<td class="units">
<input type="number" class="choose-quantity" placeholder="0" value="@item.Quantity" min="0" readonly="readonly">
</td>
<td class="vat">
<small class="hl">VAT:</small>
£@(vatValue)
</td>
<td class="goods-value">
<small class="hl">Goods value:</small>
£@(goodsValue)
</td>
</tr>
}
VAT欄和Goods value欄沒有數字。我明白爲什麼這樣做,因爲我們有一個嵌套的標籤內部正在排序,插件可能將HTML解釋爲字符串的一部分,因此不能按數字排序。
無論如何我可以解決這個問題嗎?我可以在此表上設置任何配置設置,使其只能查找數字?
謝謝!
這與我事實上非常相似。我遇到了這個問題,另一個問題是由於編碼的£字符代碼導致排序不起作用。我在每個字段中都寫了一個隱藏的跨度,並將其放在第一位。它在表格中沒有看到,但可以使搜索有效地工作。 我可以說,你的插件奇妙的工作!特別有用,保持良好的工作,謝謝! –