(ASP.NET) Как я могу сделать так, чтобы данные выбранной строки отображались в диалоговом окне подтверждения? - PullRequest
0 голосов
/ 23 ноября 2011

Я попробовал следующий код на linkbutton onClientClick.Но это вызывает ошибку.

return confirm('""Are you sure you want to report on the  & **row.Cells(3).Text** &  vs  & **row.Cells(4).Text** & game, at the  & **row.Cells(5).Text** &  stadium. For  & **row.Cells(2).Text** &  on the  & **row.Cells(1).Text &** " ."'); 

Ниже приведен остальной код.

<asp:gridview id="FixtureGridView" runat="server"
              autogeneratecolumns="False"
              datasourceid="matches"
              height="140px" 
              width="800px" 
              onselectedindexchanged="FixtureGridView_SelectedIndexChanged">
              <columns>
                  <asp:commandfield showselectbutton="True" />
                  <asp:boundfield datafield="date" headertext="date" sortexpression="date" readonly="True" />
                  <asp:boundfield datafield="kick-off time" headertext="kick-off time" sortexpression="kick-off time" />
                  <asp:boundfield datafield="home team" headertext="home team" sortexpression="home team" />
                  <asp:boundfield datafield="away team" headertext="away team" sortexpression="away team" />
                  <asp:boundfield datafield="stadium" headertext="stadium" sortexpression="stadium" />
                  <asp:TemplateField>
                      <ItemTemplate>
                          <asp:LinkButton ID="LinkButton1" Runat="server"
                                          OnClientClick="return confirm('Are you sure you want to report on this game');"
                                          CommandName="Select">
                          Report
                          </asp:LinkButton>
                      </ItemTemplate>
                  </asp:TemplateField>

Ответы [ 2 ]

1 голос
/ 23 ноября 2011

Вы должны иметь возможность создать подтверждение, используя функцию Eval:

<asp:Button OnClientClick="return confirm('<%# String.Format("Delete {0}?", Eval("SomeColumn")) %>');" />
0 голосов
/ 24 ноября 2011

вы можете использовать событие row_databound вида сетки следующим образом: вы должны привести найденный элемент управления к тому же типу элемента управления

if (e.Row.RowType == DataControlRowType.DataRow) {
    LinkButton link = (LinkButton)e.Row.FindControl("LinkButton1");
    link.Attributes.Add("onclick", "return confirm('Are you sure you want to report on this game');");
}
...