Re: "REMOVE" item detection

Last post 08-28-2008, 12:35 PM by dgilgallon. 2 replies.
Sort Posts: Previous Next
  •  08-25-2008, 2:46 PM 43252

    Re: "REMOVE" item detection

    Hello all:
     
     
       I was just wondering how to detect if the user clicks the "REMOVE" link that is presented when a file is added. 
     
    Regards,
    Dennis Gilgallon
  •  08-28-2008, 9:35 AM 43344 in reply to 43252

    Re: "REMOVE" item detection

    Hi,
     
    Currently we did not provide the remove event for that yet.
     
    You can check the items to find the removed item :
     
    foreach(AttachmentItem item in control1.Items)
    {
        if( !item.Checked && !item.Visible )
        {
            //this item is clicked remove .
        }
    }
     
    We will provide better solution on this in the future.
     
    Regards , Terry .
  •  08-28-2008, 12:35 PM 43347 in reply to 43344

    Re: "REMOVE" item detection

    Terry:
     
       Thank you for the reply. THis should help alot...
     
    Regards,
    Dennis Gilgallon
View as RSS news feed in XML