1

私は ObjectDataSource を持っています

<asp:ObjectDataSource SelectCountMethod="GetCount" EnablePaging="true" SortParameterName="sortExpression" ID="customersDS" runat="server" SelectMethod="GetList" TypeName="expenses.Classes.ExpenseFactory" DeleteMethod="Delete" UpdateMethod="Update"  >
    <SelectParameters>
        <asp:ControlParameter ControlID="IdHidden" PropertyName="Value" Name="userId" />   
        <asp:Parameter DbType='Boolean' DefaultValue='false' Name='isExpense' />      
         <asp:Parameter DbType='Boolean' DefaultValue='false' Name='containRepeated' />  
         <asp:ControlParameter DbType="Int32" DefaultValue="" ControlID="CategorySelector2" Name="categoryId" />        
          <asp:ControlParameter DbType="DateTime" DefaultValue="" ControlID="FromSpentDateCalendarBox" Name="from" />  
          <asp:ControlParameter DbType="DateTime" DefaultValue="" ControlID="ToSpentDateCalendarBox" Name="to" />  
    </SelectParameters>
    <UpdateParameters>
     <asp:ControlParameter ControlID="IdHidden" PropertyName="Value" Name="userId" />   
        <asp:Parameter DbType='Boolean' DefaultValue='false' Name='isExpense' />   
    </UpdateParameters>
    </asp:ObjectDataSource>

GridView に接続されている

<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" 
    AllowPaging="True" AllowSorting="True"
            DataSourceID="customersDS" CssClass="gtable sortable width100" DataKeyNames="Id"
            AlternatingRowStyle-CssClass="odd" CellPadding="0" GridLines="None" OnPreRender="PreRender"
        OnRowDataBound="GridView1_RowDataBound" 
           >

CommandField の編集ボタンと削除ボタンを使用する

<asp:CommandField ItemStyle-Width="75px" HeaderStyle-Font-Bold=true HeaderText="<%$ Resources:Default, Actions %>"  EditImageUrl="~/img/edit.png" ButtonType='Image'  ShowEditButton="True" UpdateImageUrl="~/img/save.gif" CancelImageUrl="~/img/cancel.png" >                                                                      
   <ControlStyle CssClass="my_edit_buttons" />                             
</asp:CommandField>

すべてが UpdatePanel 内にあります。GridView と ObjectDataSource はページングをサポートし、使用します。ページングは​​問題なく動作します。問題は編集です。最初のページで編集をクリックすると、すべてが期待どおりに機能します。2 ページ目または他のページ (1 より大きい) の n 番目のアイテムで [編集] をクリックすると、GridView は最初のページに切り替わり、編集のために n 番目のアイテムを選択しました。

(より具体的な例: 2 ページ目に切り替えて、そのページのアイテム番号 2 を選択して編集すると、GridView が最初のページに切り替わり、(最初のページの) アイテム番号 2 を選択して編集します)。

何が問題なのですか?

編集:

PreRender (GridView ヘッダーの設定):

    protected void PreRender(object sender, EventArgs e)
    {
        try
        {
            GridView1.UseAccessibleHeader = false;
            GridView1.HeaderRow.TableSection = TableRowSection.TableHeader;
        }
        catch
        {

        }
    }

RowDataBound (設定プロンプトで削除ボタンをカスタム ボタンに変更|:

    protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            // we are using a html anchor and a hidden asp:button for the delete
            HtmlAnchor linkDelete = (HtmlAnchor) e.Row.FindControl("linkDelete");
            ImageButton btnDelete = (ImageButton) e.Row.FindControl("btnDelete");

            string prompt = Resources.Default.DeletePrompt;
            linkDelete.Attributes["onclick"] = string.Format(prompt, btnDelete.ClientID);

            Expense expense = e.Row.DataItem as Expense;
            if (expense!=null)
            {
                if (expense.SpentDate>DateTime.Now)
                {
                    e.Row.CssClass = "future";   
                }
            }

            e.Row.Cells[1].CssClass = e.Row.Cells[4].CssClass = "red";               
        }
4

0 に答える 0