我想在Asp.Net中的2 List / Combo Box中实现Drag n Drop功能。我将从listbox1中选择并拖动1项并将其放在Listbox2上。那么我该如何开始?
是否有可用的Jquery插件?
感谢
瑞克杰克逊答案 0 :(得分:2)
网上有很多可用的插件,但你可以通过使用java脚本来实现。我已经在asp.net中创建了一个示例应用程序。查看这个并告诉我你是否有任何疑问。
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ST.aspx.cs" Inherits="ST" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script language="javascript" type="text/javascript">
var d;
function drag(objSource) {
this.select = objSource;
}
function drag.prototype.drop(objDest) {
if (!this.dragStart) return;
this.dest = objDest;
var o = this.option.cloneNode(true);
this.dest.appendChild(o);
this.select.removeChild(this.option);
}
function drag.prototype.setIndex() {
var i = this.select.selectedIndex;
//i returns -1 if no option is "truly" selected
window.status = "selectedIndex = " + i;
if (i == -1) return;
this.option = this.select.options[i];
this.dragStart = true;
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:ListBox ID="one" runat="server" onmousedown="d = new drag(this);" onmouseup="d.drop(this.form.two);"
onmouseout="if (typeof d != 'undefined') d.setIndex();">
<asp:ListItem Text="Opt1" Value="1"></asp:ListItem>
<asp:ListItem Text="Opt2" Value="2"></asp:ListItem>
<asp:ListItem Text="Opt3" Value="3"></asp:ListItem>
</asp:ListBox>
<asp:ListBox ID="two" runat="server">
<asp:ListItem Text="Opt1" Value="1"></asp:ListItem>
<asp:ListItem Text="Opt2" Value="2"></asp:ListItem>
<asp:ListItem Text="Opt3" Value="3"></asp:ListItem>
</asp:ListBox>
</div>
</form>
</body>
</html>
答案 1 :(得分:1)
我正在使用这两个很棒的插件进行拖放。他们有很多可以使用的样品:
答案 2 :(得分:0)
这就是我实现它的方式。数据来自数据库,我使用listview显示列表。
<table>
<tr>
<td>
<asp:ListView ID="Listview1" runat="server" DataSourceID="LinqDataSource1" >
<LayoutTemplate>
Unallocated Sections
<asp:Label ID="Setter Count" runat="server"></asp:Label>
<ul class="sortable" draggable="true" id="Setter" style="overflow: scroll; empty-cells: hide; height: 500px; width: 200px; border: solid 1px; background: #b6b6b6;" >
<li id="Li1" runat="server" draggable="true" style="user-select: element;" >
<asp:PlaceHolder ID="PlaceHolder1" id-="itemPlaceholder" runat="server" ></asp:PlaceHolder>
</li>
</ul>
</LayoutTemplate>
<ItemTemplate>
<li id="Li2" runat="server" title="Drag to Allocate sections" >
<%# Eval("Section")%>
</li>
</ItemTemplate>
</asp:ListView>
</td>
<td>Allocated Sections
<asp:Label ID="GetterCount" runat ="server"></asp:Label>
<ul class="sortable" draggable="true" id="Getter" style="overflow: scroll; height: 500px; width: 200px; border: solid 1px; background: #fff;">
<li style="color: red;"></li>
</ul>
</td>
</tr>
</table>
使用的jQuery如下:
<script>
$(function () {
$("#Setter,#Getter").sortable({
connectWith: ".sortable"
}).selectable();
});
</script>
我希望这会有所帮助。有关更多选项,请查看jQuery UI: Sortable。