0

我必须在 Sharepoint 站点的更新面板中动态填充一个复选框。问题是,即使我在单击按钮后清除了选择,复选框也会以某种方式记住以前的选择并显示 checkbox.items[i].selected 为 true,即使对于以前的选择,如果我删除更新面板,这个问题就解决了.但是我无法删除更新面板,因为每次进行选择时都会重新加载整个页面下面是我的代码

                <div align="left">
                <asp:UpdatePanel ID="UpdatePanel1" runat="server" ChildrenAsTriggers="True"  >
                <ContentTemplate> 
                <asp:CheckBoxList    BackColor="White"  AutoPostBack="true"   ID="cbHideTabs" 
                        runat="server"  isCheckable="true" ForeColor="#0072bc" Width="300px" >
                        </asp:CheckBoxList>

                    <input type ="button"    Visible ="true" ID="HideShowTabButton" value="HideShowTab" title="HideShowTab" runat="server"   style="background-color: #0072bc; color: #FFFFFF;" enableviewstate="False" />   

            </ContentTemplate>
                   </asp:UpdatePanel>
             </div>
     </asp:Panel>

        <br />

        <asp:PopupControlExtender ID="PopupControlExtender1" Enableviewstate="false" runat="server" CommitProperty="value"
           PopupControlID="Panel1" 
            Position="Bottom" TargetControlID="ShowHideLabel">
        </asp:PopupControlExtender> 
4

1 回答 1

0

你能分享你用来清除选择的代码吗?

我修改了你的代码,它对我有用。

aspx 页面的代码

<%@ Page Title="Home Page" Language="vb" MasterPageFile="~/Site.Master" AutoEventWireup="false"
    CodeBehind="Default.aspx.vb" Inherits="UpdateCheckbox._Default" %>

<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
   <div>
    <asp:scriptmanager ID="Scriptmanager1" runat="server"></asp:scriptmanager>
    <asp:updatepanel ID="Updatepanel1" runat="server">
    <ContentTemplate> 
                <asp:CheckBoxList ID="chkAll"    BackColor="White"  AutoPostBack="true"   
                        runat="server"  isCheckable="true" ForeColor="#0072bc" Width="300px" >
                       <asp:ListItem Enabled="true" Text="1"></asp:ListItem>
                       <asp:ListItem Enabled="true" Text="1"></asp:ListItem>
                       <asp:ListItem Enabled="true" Text="1"></asp:ListItem>
<asp:ListItem Enabled="true" Text="1"></asp:ListItem>
<asp:ListItem Enabled="true" Text="1"></asp:ListItem>
<asp:ListItem Enabled="true" Text="1"></asp:ListItem>
<asp:ListItem Enabled="true" Text="1"></asp:ListItem>
                       <asp:ListItem Enabled="true" Text="1"></asp:ListItem>
                       </asp:CheckBoxList>
<asp:Button runat="server" Text="HideShowTab" runat="server" OnClick="Clear_Click"  style="background-color: #0072bc; color: #FFFFFF;" enableviewstate="False" />

            </ContentTemplate>

    </asp:updatepanel>
</div>
</asp:Content>

vb.net 中的代码

Protected Sub Clear_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        chkAll.ClearSelection()
    End Sub
于 2012-09-13T08:11:40.600 回答