ASPxListBox“全选”按钮

时间:2012-01-16 00:41:44

标签: asp.net listbox devexpress

是否可以在列表框中选择所有按钮?有什么想法如何实现呢?感谢。

2 个答案:

答案 0 :(得分:1)

// Set  - SelectionMode="Multiple" for your ListBox and then do

protected void LinkButton1_Click1(object sender, EventArgs e)
{
    foreach (ListItem li in ListBox1.Items)
    {
        li.Selected = true;
    }
}

样品可在以下地址获得: http://forums.asp.net/t/1241640.aspx/1

http://www.aspnet101.com/2008/01/listbox-select-allselect-none/

select all items in the listbox in asp.net

答案 1 :(得分:0)

您可以按以下方式选择所有ASPxListBox项目:

<dx:ASPxListBox ID="lb" runat="server" ClientInstanceName="lbClient" SelectionMode="CheckColumn">
</dx:ASPxListBox>

<强>客户端:

lbClient.SelectAll();

服务器

lb.SelectAll();