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 に答える