如何在列表视图中使用 类对项目进行排序
本文关键字:项目 排序 td 列表 视图 | 更新日期: 2023-09-27 18:30:25
我有一个ListView
.在里面,我使用 <table>
作为项目模板。我想使用类名对项目进行排序<td>
。
我该怎么做?这应该适用于按钮单击。
<asp:ListView ID="lstvRCGroupSource" runat="server" ViewStateMode="Disabled">
<LayoutTemplate>
<ul id="list3" class="conn" style="width: 90%; height: 171px;">
<asp:PlaceHolder runat="server" ID="itemPlaceholder"></asp:PlaceHolder>
</ul>
</LayoutTemplate>
<ItemTemplate>
<li class="add" id="l3">
<table id="tbl" style="width: 100%;">
<tr class="mytr" style="width: 100%;">
<td class="border1" style="width: 50%;"><%# Eval("code") %></td>
<td class="border2" style="width: 50%;"><%# Eval("regon_name") %></td>
</tr>
</table>
</li>
</ItemTemplate>
</asp:ListView>
function sortUnorderedList(ul, sortDescending) {
if (typeof ul == "string")
ul = document.getElementById(ul);
var lis = ul.getElementsByTagName("li");
var vals = [];
for (var i = 0, l = lis.length; i < l; i++)
vals.push(lis[i].innerHTML);
vals.sort();
if (sortDescending)
vals.reverse();
for (var i = 0, l = lis.length; i < l; i++)
lis[i].innerHTML = vals[i];
}
window.onload = function () {
var desc = false;
document.getElementById("stCodeDSC").onclick = function () {
sortUnorderedList("list3", desc);
desc = !desc;
return false;
}
}
我会使用DataGrid或DataGridView。它已经内置了排序机制。
为什么不使用 OnItemCommand:
将 LinkButton 保留在列表视图的表中:
<table id="tbl" style="width: 100%;">
<tr class="mytr" style="width: 100%;">
<td class="border1" style="width: 50%;">
<asp:LinkButton ID="LinkButton1" runat="server"><%# Eval("code") %></asp:LinkButton>
</td>
<td class="border2" style="width: 50%;">
<asp:LinkButton ID="LinkButton2" runat="server"><%# Eval("regon_name") %></asp:LinkButton>
</td>
</tr>
</table>
在 OnItemCommand 中查找链接按钮单击事件:
protected void ListView1_ItemCommand(object sender, ListViewCommandEventArgs e)
{
if (e.CommandName.Equals("Code"))
{
// sorting code
}
if (e.CommandName.Equals("RegionName"))
{
// sorting code
}
}
看看这个jQuery排序函数。使用您的代码应该很容易实现。
函数如下:
jQuery.fn.sortElements = (function(){
var sort = [].sort;
return function(comparator, getSortable) {
getSortable = getSortable || function(){return this;};
var placements = this.map(function(){
var sortElement = getSortable.call(this),
parentNode = sortElement.parentNode,
// Since the element itself will change position, we have
// to have some way of storing its original position in
// the DOM. The easiest way is to have a 'flag' node:
nextSibling = parentNode.insertBefore(
document.createTextNode(''),
sortElement.nextSibling
);
return function() {
if (parentNode === this) {
throw new Error(
"You can't sort elements if any one is a descendant of another."
);
}
// Insert before flag:
parentNode.insertBefore(this, nextSibling);
// Remove flag:
parentNode.removeChild(nextSibling);
};
});
return sort.call(this, comparator).each(function(i){
placements[i].call(getSortable.call(this));
});
};
})();
实现应该看起来像这样:
$("#list3 li td").sortElements(function(a, b){
return $(a).attr("class") > $(b).attr("class") ? 1 : -1;
});
相关文章:
- 并发队列删除项目从同步或重新排序中删除
- 添加重复数字时,哪个数字字典集合会重新排序项目
- 如果项目是文件路径,则对与文件名对应的列表框进行排序
- 按字母顺序对列表视图上的项目进行排序
- 从查询结果中对单个项目重新排序
- 如何按排序顺序选择列表顶部的最新项目和项目的其余部分
- 按对象的 object.property lambda 对列表中的项目进行排序
- 如何在列表视图中使用
类对项目进行排序
- 以自定义方式对列表中的项目进行排序
- 在一个项目模板内对下拉列表和标签进行排序
- Outlook Interop c#排序项目不起作用
- 如何对包含1个以上项目的列表进行排序?我只能用它对一个项目的列表进行排序
- WindowsPhone-LongListSelector按日期对项目进行分组并按日期排序
- 按项目类型对数组进行排序
- 筛选/排序列表框项目
- 拖动&;Drop可重新排序wpf列表框中的项目
- 按错误顺序添加到排序列表中的项目
- c#列表框对项目排序
- 按项目中的多个项目排序
- 使用不同时,我无法按 id 项目排序
本文关键字:项目 排序 td 列表 视图 | 更新日期: 2023-09-27 18:30:25
我有一个ListView
.在里面,我使用 <table>
作为项目模板。我想使用类名对项目进行排序<td>
。
我该怎么做?这应该适用于按钮单击。
<asp:ListView ID="lstvRCGroupSource" runat="server" ViewStateMode="Disabled">
<LayoutTemplate>
<ul id="list3" class="conn" style="width: 90%; height: 171px;">
<asp:PlaceHolder runat="server" ID="itemPlaceholder"></asp:PlaceHolder>
</ul>
</LayoutTemplate>
<ItemTemplate>
<li class="add" id="l3">
<table id="tbl" style="width: 100%;">
<tr class="mytr" style="width: 100%;">
<td class="border1" style="width: 50%;"><%# Eval("code") %></td>
<td class="border2" style="width: 50%;"><%# Eval("regon_name") %></td>
</tr>
</table>
</li>
</ItemTemplate>
</asp:ListView>
function sortUnorderedList(ul, sortDescending) {
if (typeof ul == "string")
ul = document.getElementById(ul);
var lis = ul.getElementsByTagName("li");
var vals = [];
for (var i = 0, l = lis.length; i < l; i++)
vals.push(lis[i].innerHTML);
vals.sort();
if (sortDescending)
vals.reverse();
for (var i = 0, l = lis.length; i < l; i++)
lis[i].innerHTML = vals[i];
}
window.onload = function () {
var desc = false;
document.getElementById("stCodeDSC").onclick = function () {
sortUnorderedList("list3", desc);
desc = !desc;
return false;
}
}
我会使用DataGrid或DataGridView。它已经内置了排序机制。
为什么不使用 OnItemCommand:
将 LinkButton 保留在列表视图的表中:
<table id="tbl" style="width: 100%;">
<tr class="mytr" style="width: 100%;">
<td class="border1" style="width: 50%;">
<asp:LinkButton ID="LinkButton1" runat="server"><%# Eval("code") %></asp:LinkButton>
</td>
<td class="border2" style="width: 50%;">
<asp:LinkButton ID="LinkButton2" runat="server"><%# Eval("regon_name") %></asp:LinkButton>
</td>
</tr>
</table>
在 OnItemCommand 中查找链接按钮单击事件:
protected void ListView1_ItemCommand(object sender, ListViewCommandEventArgs e)
{
if (e.CommandName.Equals("Code"))
{
// sorting code
}
if (e.CommandName.Equals("RegionName"))
{
// sorting code
}
}
看看这个jQuery排序函数。使用您的代码应该很容易实现。
函数如下:
jQuery.fn.sortElements = (function(){
var sort = [].sort;
return function(comparator, getSortable) {
getSortable = getSortable || function(){return this;};
var placements = this.map(function(){
var sortElement = getSortable.call(this),
parentNode = sortElement.parentNode,
// Since the element itself will change position, we have
// to have some way of storing its original position in
// the DOM. The easiest way is to have a 'flag' node:
nextSibling = parentNode.insertBefore(
document.createTextNode(''),
sortElement.nextSibling
);
return function() {
if (parentNode === this) {
throw new Error(
"You can't sort elements if any one is a descendant of another."
);
}
// Insert before flag:
parentNode.insertBefore(this, nextSibling);
// Remove flag:
parentNode.removeChild(nextSibling);
};
});
return sort.call(this, comparator).each(function(i){
placements[i].call(getSortable.call(this));
});
};
})();
实现应该看起来像这样:
$("#list3 li td").sortElements(function(a, b){
return $(a).attr("class") > $(b).attr("class") ? 1 : -1;
});
相关文章:
- 并发队列删除项目从同步或重新排序中删除
- 添加重复数字时,哪个数字字典集合会重新排序项目
- 如果项目是文件路径,则对与文件名对应的列表框进行排序
- 按字母顺序对列表视图上的项目进行排序
- 从查询结果中对单个项目重新排序
- 如何按排序顺序选择列表顶部的最新项目和项目的其余部分
- 按对象的 object.property lambda 对列表中的项目进行排序
- 如何在列表视图中使用
类对项目进行排序 - 以自定义方式对列表中的项目进行排序
- 在一个项目模板内对下拉列表和标签进行排序
- Outlook Interop c#排序项目不起作用
- 如何对包含1个以上项目的列表进行排序?我只能用它对一个项目的列表进行排序
- WindowsPhone-LongListSelector按日期对项目进行分组并按日期排序
- 按项目类型对数组进行排序
- 筛选/排序列表框项目
- 拖动&;Drop可重新排序wpf列表框中的项目
- 按错误顺序添加到排序列表中的项目
- c#列表框对项目排序
- 按项目中的多个项目排序
- 使用不同时,我无法按 id 项目排序