在ASP.Net中使用多选的SELEC24.0:如何获取和设置所选项目
本文关键字:获取 何获取 项目 选项 设置 Net ASP SELEC24 | 更新日期: 2023-09-27 18:29:47
我正在尝试将ASP.Net中的SELECT2与下拉列表结合使用。
这是我的.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="default.aspx.cs" Inherits="ASPNet_SELECT2_1._default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>a SELECT2 implementation in ASP.NET</title>
<script src="scripts/js/jquery-1.12.0.js"></script>
<script src="scripts/js/select2/select2.js"></script>
<link rel="stylesheet" href="css/select2.css" />
<script>
$(document).ready(function () {
$("#" + "<%=dd.ClientID%>").select2({
placeholder: "Select a Subject",
allowClear: true
});
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:DropDownList ID="dd" runat="server" ClientIDMode="Static" Width="300px" multiple="multiple"></asp:DropDownList>
</div>
<asp:Button ID="btnGetSelected" runat="server" Text="Get selected items" OnClick="btnGetSelected_Click" /> <asp:Button ID="btnSetSelected" runat="server" Text="Set selected items" OnClick="btnSetSelected_Click" />
<br />
<asp:Literal ID="lit" runat="server"></asp:Literal>
</form>
</body>
</html>
这是背后的我的代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace ASPNet_SELECT2_1
{
public partial class _default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
for (int i = 0; i < 10; i++)
{
ListItem l = new ListItem("Item " + i.ToString());
dd.Items.Add(l);
}
}
}
protected void btnGetSelected_Click(object sender, EventArgs e)
{
lit.Text = dd.Text;
}
protected void btnSetSelected_Click(object sender, EventArgs e)
{
}
}
}
SELECT2控件与我的下拉列表的绑定工作正常。我还为下拉列表设置了"multiple"属性,以具有多选功能。但是我无法获取所选项目。我也不能设置这些项目。
当我选择多个元素并进行回发(例如单击按钮)时,回发后只选择一个项目。我总是得到选中的第一个项目。
如何在回发时以及通过代码获取所有选定项目并设置多个选定项目?
我已经通过使用runat="server"的HTML Select Tag而不是使用DropDownList解决了这个问题,因为我认为Postback功能等是默认在控件中实现的,不可能毫不费力地更改。
这是我的JS
$(document).ready(function () {
$("#select1").select2({
placeholder: "Select a Subject",
allowClear: true
});
});
这是我的.aspx
<select id="select1" name="select1" runat="server" multiple="true" style="width:300px"></select>
这是我在C#中的代码索引,用于填充select 中的项目
for (int i = 0; i < 10; i++)
{
ListItem l = new ListItem("Item " + i.ToString(), i.ToString());
select1.Items.Add(l);
}
这是获取和设置所选项目的方法
// GET SELECTED ITEMS
for (int i = 0; i <= select1.Items.Count - 1; i++)
{
if (select1.Items[i].Selected)
lit.Text += "<br /> - " + select1.Items[i].Text + " | " + select1.Items[i].Value;
}
// SET SELECTED ITEMS
select1.Items[2].Selected = true;
select1.Items[4].Selected = true;