質問

私はここでいくつかの投稿を読んでいますが、いくつかは私の問題に関連していますが、何らかの理由で提供された解決策は私にはうまくいきません。基本的に、チェックボックスを備えた2つのGridViewコントロールがあります。彼らはまったく同じコードを持っていますが、異なるイベントを発射するだけです。そしてもちろん、異なるIDとそれらの適切なユニークな情報があります。これが奇妙なことです、そのうちの1つはうまく機能し、もう1つはそうではありません。私は両方をここに投稿します。ID= "UnassignElegibilityChk"を持つものは機能していないオントであることに留意してください。チェックからポストバックを送信したときに関数内にいるかどうかをテストするためにブレークポイントを入れました。

注:これらのツリービューはどちらも同じページにあるため、CodeBehindディレクティブとすべての設定がページに適切に割り当てられていると仮定してください(そのうちの1つが機能しているため、問題はないと仮定します)

これは機能していないものです。

   <table><tr><td class="style1">
    <asp:GridView ID="ElegibilitySelectedGridview" runat="server" 
        AutoGenerateColumns="False" DataKeyNames="ID" CellPadding="4" 
        ForeColor="#333333" GridLines="None" Width="475px">
        <AlternatingRowStyle BackColor="White" ForeColor="#284775" />
    <Columns>
        <asp:TemplateField HeaderText="ID">
            <ItemTemplate>
                <asp:Label ID="lblID0" runat="server" Text='<%# Bind("ID") %>'></asp:Label>
            </ItemTemplate>
        </asp:TemplateField>
        <asp:TemplateField HeaderText="Select">
            <ItemTemplate>
                <asp:CheckBox ID="UnassignElegibilityChk" runat="server"  AutoPostBack="true" OnCheckedChanged="UnAssignElegibilityRecord"/>
            </ItemTemplate>                   
        </asp:TemplateField>
        <asp:boundfield datafield="Name"  HeaderText="Elegible Item" />
        </Columns>
        <EditRowStyle BackColor="#999999" />
        <FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
        <HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
        <PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
        <RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
        <SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
        <SortedAscendingCellStyle BackColor="#E9E7E2" />
        <SortedAscendingHeaderStyle BackColor="#506C8C" />
        <SortedDescendingCellStyle BackColor="#FFFDF8" />
        <SortedDescendingHeaderStyle BackColor="#6F8DAE" />
    </asp:GridView>
    </td></tr></table>

動作しているものは以下にあります:

<table><tr><td class="style1">
<asp:DropDownList ID="ElegibilityGroupDDL" runat="server" AutoPostBack="True" OnSelectedIndexChanged="ElegibilityGroupDDL_SelectedIndexChanged">
    <asp:ListItem Value="0">ROOT</asp:ListItem>
</asp:DropDownList>
</td></tr><tr><td class="style1">
    <asp:TextBox ID="ElegibilityNameTxt" runat="server" Width="464px"></asp:TextBox>
    </td></tr><tr><td class="style1">
    <asp:Button ID="ElegibilitySaveBtn" runat="server" Text="Save Elegibility" />
    &nbsp;</td></tr><tr><td class="style1">
    <asp:Label ID="ElegibilityMsgLbl" runat="server" Text="" style="color: #0066CC"></asp:Label>
    </td></tr><tr style="background:silver"><td class="style1">
    &nbsp;</td></tr><tr><td class="style1">

    <asp:GridView ID="ElegibilityGridView" runat="server" 
        AutoGenerateColumns="False" DataKeyNames="ID" BackColor="White" 
        BorderColor="#DEDFDE" BorderStyle="None" BorderWidth="1px" CellPadding="4" 
        ForeColor="Black" GridLines="Vertical" Width="95%">
        <AlternatingRowStyle BackColor="White" />
    <Columns>
        <asp:TemplateField HeaderText="ID">
            <ItemTemplate>
                <asp:Label ID="lblID" runat="server" Text='<%# Bind("ID") %>'></asp:Label>
            </ItemTemplate>
        </asp:TemplateField>
        <asp:TemplateField HeaderText="Select">
            <ItemTemplate>
                <asp:CheckBox ID="AssignElegibilityChk" runat="server" AutoPostBack="true" OnCheckedChanged="AssignElegibility"/>
            </ItemTemplate>                   
        </asp:TemplateField>
        <asp:boundfield datafield="Name"  HeaderText="Elegible Item" />
        </Columns>
        <FooterStyle BackColor="#CCCC99" />
        <HeaderStyle BackColor="#6B696B" Font-Bold="True" ForeColor="White" />
        <PagerStyle BackColor="#F7F7DE" ForeColor="Black" HorizontalAlign="Right" />
        <RowStyle BackColor="#F7F7DE" />
        <SelectedRowStyle BackColor="#CE5D5A" Font-Bold="True" ForeColor="White" />
        <SortedAscendingCellStyle BackColor="#FBFBF2" />
        <SortedAscendingHeaderStyle BackColor="#848384" />
        <SortedDescendingCellStyle BackColor="#EAEAD3" />
        <SortedDescendingHeaderStyle BackColor="#575357" />
    </asp:GridView>
    </td></tr></table>

動作するグリッドビューは、この機能を正常に発射します。

 Public Sub AssignElegibility()
    If Page.IsPostBack Then
        For Each row As GridViewRow In ElegibilityGridView.Rows
            Dim checkbox As CheckBox = CType(row.FindControl("AssignElegibilityChk"), CheckBox)
            'Check if the checkbox is checked.'
            'value in the HtmlInputCheckBox Value property is set as the //value of the delete commands parameter.'
            If checkbox.Checked Then
                ' Retreive the Employee ID'
                Dim lblID As Label = CType(row.FindControl("lblID"), Label)
                Dim elegibilityID As Integer = Convert.ToInt32(lblID.Text)
                Elegibility.AddElegibilityMapping(CInt(Request("ResID")), elegibilityID)
                ElegibilitySelectedItems(CInt(Request("ResID")))
                ElegibilityGroupDDL_SelectedIndexChanged()
            End If
        Next
    End If
End Sub

非動作するものはこのコードを発射することになっていますが、そうではありません。

Public Sub UnAssignElegibilityRecord(ByVal sender As Object, ByVal e As System.EventArgs)
    PrintLine("Inside the sub")
    If Page.IsPostBack Then
        For Each row As GridViewRow In ElegibilitySelectedGridview.Rows
            Dim checkbox As CheckBox = CType(row.FindControl("UnassignElegibilityChk"), CheckBox)
            'Check if the checkbox is checked.'
            'value in the HtmlInputCheckBox Value property is set as the //value of the delete commands parameter.'
            If checkbox.Checked Then
                ' Retreive the Employee ID'
                Dim lblID As Label = CType(row.FindControl("lblID0"), Label)
                Dim elegibilityID As Integer = Convert.ToInt32(lblID.Text)
                Elegibility.RemoveElegibilityMapping(elegibilityID)
                ElegibilitySelectedItems(CInt(Request("ResID")))
                ElegibilityGroupDDL_SelectedIndexChanged()
            End If
        Next
    End If
End Sub
役に立ちましたか?

解決

次のことがあなたの問題を解決するかどうかはわかりませんが...

  1. CheckedChangedの「動作」ハンドラーが間違った署名を持っているのはなぜですか?送信者とイベントが必要です。

    protected Sub AssignElegibility(ByVal sender As Object, ByVal e As System.EventArgs)

  2. グリドローを反復して、チェックボックスと変更された行を取得するのはなぜですか?これも機能します:

    Dim checkbox As CheckBox = DirectCast(sender,CheckBox)

行を取得するには、チェックボックスのnamingcontainerをgridviewrowにキャストするだけです。

Dim row as GridViewRow =DirectCast(checkbox.NamingContainer,GridViewRow)

編集: :EregleabilitySelectedGridView-GridをPostbackで再生成しますか?あなたはそれをするときだけそれをするべきです not Page.IsPostback, 、そうでなければ、イベントは発砲しません。

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top