Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 1.0 and 1.1 > ASP.NET 1.0 and 1.1 Basics
|
ASP.NET 1.0 and 1.1 Basics ASP.NET discussion for users new to coding in ASP.NET 1.0 or 1.1. NOT for the older "classic" ASP 3 or the newer ASP.NET 2.0.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 1.0 and 1.1 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old December 8th, 2005, 08:30 PM
Authorized User
 
Join Date: Dec 2005
Posts: 19
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to raybristol
Default a problem of adding a confirm window to delete but

hi i have a template column in datagrid, i have a button in header template, checkbox for itemtemplate, so i can delete multiple rows, my code works fine for that but I need to tell user what items will be deleted before they press 'OK' button in the popup windows, i have a problem of collecting selected item's ID, in my code, the selected item's ID only will be collected after user press 'OK' button in the popup window. my code for aspx page is in below:

<asp:TemplateColumn HeaderText="Delete" HeaderStyle-Width=70px>
<HeaderTemplate>
'DeleteStore will look for checked item and perform delete
<asp:button id=delConfirm onclick=DeleteStore runat="server" Width="62px" Text="Reject" Font-Bold=True ></asp:button>
</HeaderTemplate>
<ItemTemplate>
<asp:CheckBox id=DeleteThis Runat="server"></asp:CheckBox>
</ItemTemplate>
</asp:TemplateColumn>


in DeleteStore I use following code to search all the checked checkbox:

   For Each i As DataGridItem In DataGrid1.Items
      Dim deleteChkBxItem As CheckBox = CType(i.FindControl("DeleteThis"), CheckBox)
'delIDs will be assigned selected item's ID
                      If deleteChkBxItem.Checked Then
                          delIDs += CType(i.FindControl("Hyperlink8"), HyperLink).Text.ToString + ","
'Label5.Text is for debugging purpose
                          Label5.Text = delIDs
                      End If
Next

however, I want to put all the selected item information in the popup confirm window, which will be the value of delIDs, however if I put above code combine with the popup confirm window code like this:

Private Sub DataGrid1_ItemGreated(ByVal Sender As Object, ByVal e As DataGridItemEventArgs) Handles DataGrid1.ItemCreated
      Select Case e.Item.ItemType
          Case ListItemType.Item, ListItemType.AlternatingItem, ListItemType.EditItem, ListItemType.Header
              Dim myDeleteButton As WebControl
              myDeleteButton = e.Item.FindControl("delConfirm")

              If myDeleteButton Is Nothing Then
              Else

   'I dun know why this for loop is run after "return confirm...

                  For Each i As DataGridItem In DataGrid1.Items
                      Dim deleteChkBxItem As CheckBox = CType(i.FindControl("DeleteThis"), CheckBox)

                      If deleteChkBxItem.Checked Then
                          delIDs += CType(i.FindControl("Hyperlink8"), HyperLink).Text.ToString + ","
                          Label5.Text = delIDs
                      End If
                  Next



                  myDeleteButton.Attributes.Add("onclick", "return confirm('Are you sure you want to delete the following News? " + delIDs + " ');")

              End If
      End Select
      chkState()
  End Sub


in above code, statement " myDeleteButton.Attributes.Add("onclick", "return confirm('Are you sure you want to delete the following News? " + delIDs + " ');")" is for adding the confirm window before delete action, it suppose to display all the selected item's ID (delIDs) in the popup window, however, delIDs is not assigned with selected items' ID until I press ok in the confirm window (I can see this by viewing Lable5's text, because I also assign Lable5's text = delIDs)

I hope this is clear, thanks so much for your help!

*sorry i posted this one on ADO.net, but i just notice there is a ASP.NET!*

 
Old December 12th, 2005, 05:01 PM
planoie's Avatar
Friend of Wrox
 
Join Date: Aug 2003
Posts: 5,407
Thanks: 0
Thanked 16 Times in 16 Posts
Default

Cross post: http://p2p.wrox.com/topic.asp?TOPIC_ID=37410





Similar Threads
Thread Thread Starter Forum Replies Last Post
a problem of adding a confirm window to delete but raybristol ADO.NET 1 December 12th, 2005 04:50 PM
Confirm delete row in datagrid rajanikrishna General .NET 3 December 8th, 2004 09:27 PM
Confirm Window AND email sent Ames2004 ASP.NET 1.0 and 1.1 Basics 4 May 24th, 2004 03:38 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.